summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2000-05-11 20:17:28 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2000-05-11 20:17:28 +0000
commit6492f6750d58cffe6b6021256064eaf1bf9bd29c (patch)
tree991f4820d200b5628d6bd9148bf03110a88c6476 /sys
parentf6c7a9efb8382ce223e33b2f3758bed408c80f33 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/ohci_pci.c2
-rw-r--r--sys/dev/usb/uhci_pci.c2
-rw-r--r--sys/pci/ohci_pci.c2
-rw-r--r--sys/pci/uhci_pci.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/sys/dev/usb/ohci_pci.c b/sys/dev/usb/ohci_pci.c
index 47f6642d9360..e1076f873a87 100644
--- a/sys/dev/usb/ohci_pci.c
+++ b/sys/dev/usb/ohci_pci.c
@@ -159,7 +159,9 @@ ohci_pci_attach(device_t self)
intr = pci_read_config(self, PCIR_INTLINE, 1);
if (intr == 0 || intr == 255) {
device_printf(self, "Invalid irq %d\n", intr);
+#ifdef __i386__
device_printf(self, "Please switch on USB support and switch PNP-OS to 'No' in BIOS\n");
+#endif
return ENXIO;
}
diff --git a/sys/dev/usb/uhci_pci.c b/sys/dev/usb/uhci_pci.c
index ef716aae4701..d08fcb1447e3 100644
--- a/sys/dev/usb/uhci_pci.c
+++ b/sys/dev/usb/uhci_pci.c
@@ -176,7 +176,9 @@ uhci_pci_attach(device_t self)
intr = pci_read_config(self, PCIR_INTLINE, 1);
if (intr == 0 || intr == 255) {
device_printf(self, "Invalid irq %d\n", intr);
+#ifdef __i386__
device_printf(self, "Please switch on USB support and switch PNP-OS to 'No' in BIOS\n");
+#endif
return ENXIO;
}
diff --git a/sys/pci/ohci_pci.c b/sys/pci/ohci_pci.c
index 47f6642d9360..e1076f873a87 100644
--- a/sys/pci/ohci_pci.c
+++ b/sys/pci/ohci_pci.c
@@ -159,7 +159,9 @@ ohci_pci_attach(device_t self)
intr = pci_read_config(self, PCIR_INTLINE, 1);
if (intr == 0 || intr == 255) {
device_printf(self, "Invalid irq %d\n", intr);
+#ifdef __i386__
device_printf(self, "Please switch on USB support and switch PNP-OS to 'No' in BIOS\n");
+#endif
return ENXIO;
}
diff --git a/sys/pci/uhci_pci.c b/sys/pci/uhci_pci.c
index ef716aae4701..d08fcb1447e3 100644
--- a/sys/pci/uhci_pci.c
+++ b/sys/pci/uhci_pci.c
@@ -176,7 +176,9 @@ uhci_pci_attach(device_t self)
intr = pci_read_config(self, PCIR_INTLINE, 1);
if (intr == 0 || intr == 255) {
device_printf(self, "Invalid irq %d\n", intr);
+#ifdef __i386__
device_printf(self, "Please switch on USB support and switch PNP-OS to 'No' in BIOS\n");
+#endif
return ENXIO;
}