diff options
author | imp <imp@FreeBSD.org> | 2005-01-20 20:36:59 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-01-20 20:36:59 +0000 |
commit | 45ddfd5fbbdc694275a8e3cfca3f550f3e7fa52b (patch) | |
tree | fa574b29cdfa8411a3e2db9c07c9ca47955c410c /sys/dev/ep | |
parent | 44b6e13e1aa8b9ea5580ebd1f791853ab344ed70 (diff) | |
download | FreeBSD-src-45ddfd5fbbdc694275a8e3cfca3f550f3e7fa52b.zip FreeBSD-src-45ddfd5fbbdc694275a8e3cfca3f550f3e7fa52b.tar.gz |
Don't print 'unknown id' in the ep_pccard_identify routine. It is
expected to be unknown in some cases, and printing it clutters up
things too much.
Diffstat (limited to 'sys/dev/ep')
-rw-r--r-- | sys/dev/ep/if_ep_pccard.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ep/if_ep_pccard.c b/sys/dev/ep/if_ep_pccard.c index 6ef4aa9..de2382f 100644 --- a/sys/dev/ep/if_ep_pccard.c +++ b/sys/dev/ep/if_ep_pccard.c @@ -149,7 +149,6 @@ ep_pccard_identify(u_short id) case 0x0035: return ("3Com 3CCEM556"); default: - printf("Unknown ID: 0x%x\n", id); return (NULL); } } @@ -161,7 +160,7 @@ ep_pccard_card_attach(struct ep_board * epb) switch (epb->prod_id) { case 0x6055: /* 3C556 */ case 0x2b57: /* 3C572BT */ - case 0x4057: /* 3C574 */ + case 0x4057: /* 3C574, 3C574-TX */ case 0x4b57: /* 3C574B */ epb->mii_trans = 1; return (1); |