diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2004-12-26 00:35:43 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2004-12-26 00:35:43 +0000 |
commit | 4779914dc3abb338c0aadb2f7d3cf6d4a65388ee (patch) | |
tree | f77d975553accb89bb90a115a7a8ddacb328afd1 /sys/dev/pci | |
parent | d183791fce4eeb99a399a9ba4c1de10f297d5194 (diff) |
Make debug less verbose. Prompted by mickey@
And for the archives:
* Peruse the handshake mechanism between driver and firmware from the Linux
driver which is maintained by LSI.
* Copy only the first 16 bytes of the mailbox (under heavy IO overwriting the
17th byte could cause the firmware to crash).
* Limit ULTRA HBAs (a.k.a. schwartz) to one single LD (Logical Drive) because
for some reason having more than 1 ccb causes the firmware to hang. Whenever
the driver limits the LDs it issues a warning in dmesg.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/ami_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/ami_pci.c b/sys/dev/pci/ami_pci.c index 28ec9ee9b12..c2450271c01 100644 --- a/sys/dev/pci/ami_pci.c +++ b/sys/dev/pci/ami_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ami_pci.c,v 1.21 2004/12/26 00:11:24 marco Exp $ */ +/* $OpenBSD: ami_pci.c,v 1.22 2004/12/26 00:35:42 marco Exp $ */ /* * Copyright (c) 2001 Michael Shalayeff @@ -129,7 +129,7 @@ int ami_pci_find_device(aux) if (ami_pci_devices[i].vendor == PCI_VENDOR(pa->pa_id) && ami_pci_devices[i].product == PCI_PRODUCT(pa->pa_id)) { #ifdef AMI_DEBUG - printf(" ami_pci_find_device() %i ", i); + printf(" apfd %i ", i); #endif /* AMI_DEBUG */ return (i); } |