summaryrefslogtreecommitdiffstats
path: root/sys/pci/uhci_pci.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2000-05-11 20:17:28 +0000
committerjhb <jhb@FreeBSD.org>2000-05-11 20:17:28 +0000
commita59b93292e0847e7f09efd819c36504adc3665e1 (patch)
tree8cbb198052585ebb6694917ede82ba8d17bdeb0b /sys/pci/uhci_pci.c
parent5895ba5618667bc6e04c8c21bc4d263c2d0cb0f4 (diff)
downloadFreeBSD-src-a59b93292e0847e7f09efd819c36504adc3665e1.zip
FreeBSD-src-a59b93292e0847e7f09efd819c36504adc3665e1.tar.gz
Only display the 'Disable PNP-OS BIOS option' message on the i386 arch.
Alpha's don't have a PNP BIOS option. Reviewed by: n_hibma
Diffstat (limited to 'sys/pci/uhci_pci.c')
-rw-r--r--sys/pci/uhci_pci.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/pci/uhci_pci.c b/sys/pci/uhci_pci.c
index ef716aa..d08fcb1 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;
}
OpenPOWER on IntegriCloud