diff options
author | imp <imp@FreeBSD.org> | 2001-11-13 06:46:19 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-11-13 06:46:19 +0000 |
commit | 4cc415408875b9210d227fe070f832455ee9fc8c (patch) | |
tree | 192dca0778f238ad1e78549ff566955c282b87e7 /sys/pccard | |
parent | a2b7af5b3cb7378c2f86144887cb1dd8ae0e1dd4 (diff) | |
download | FreeBSD-src-4cc415408875b9210d227fe070f832455ee9fc8c.zip FreeBSD-src-4cc415408875b9210d227fe070f832455ee9fc8c.tar.gz |
Better error message when cardtype is not recognized
Diffstat (limited to 'sys/pccard')
-rw-r--r-- | sys/pccard/pcic_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pccard/pcic_pci.c b/sys/pccard/pcic_pci.c index c7f48d4..8c5274e 100644 --- a/sys/pccard/pcic_pci.c +++ b/sys/pccard/pcic_pci.c @@ -883,7 +883,7 @@ static const char * pcic_pci_cardtype(u_int32_t stat) { if (stat & CB_SS_NOTCARD) - return ("Cardtype unrecognized by bridge"); + return ("unrecognized by bridge"); if ((stat & (CB_SS_16BIT | CB_SS_CB)) == (CB_SS_16BIT | CB_SS_CB)) return ("16-bit and 32-bit (can't happen)"); if (stat & CB_SS_16BIT) |