From ca44231197cfaf20640522e91dc65743072adc02 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 20 Jan 2005 20:36:59 +0000 Subject: [PATCH] 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. --- sys/dev/ep/if_ep_pccard.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/dev/ep/if_ep_pccard.c b/sys/dev/ep/if_ep_pccard.c index 6ef4aa9a3f03..de2382fccf35 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);