diff options
author | jhb <jhb@FreeBSD.org> | 2000-05-11 20:17:28 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-05-11 20:17:28 +0000 |
commit | a59b93292e0847e7f09efd819c36504adc3665e1 (patch) | |
tree | 8cbb198052585ebb6694917ede82ba8d17bdeb0b /sys/dev/usb/uhci_pci.c | |
parent | 5895ba5618667bc6e04c8c21bc4d263c2d0cb0f4 (diff) | |
download | FreeBSD-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/dev/usb/uhci_pci.c')
-rw-r--r-- | sys/dev/usb/uhci_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/uhci_pci.c b/sys/dev/usb/uhci_pci.c index ef716aa..d08fcb1 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; } |