From b4dde362925e68f0c86bb24f1452cc59f84fcda1 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Tue, 3 Sep 2002 11:31:34 +0000 Subject: [PATCH] Remove a debug printf. Correctly identify the ARGOSY SP320 dual port serial PCMCIA card. --- sys/dev/puc/puc_pccard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/puc/puc_pccard.c b/sys/dev/puc/puc_pccard.c index 0e4c3786e374..f30e5d7d63bb 100644 --- a/sys/dev/puc/puc_pccard.c +++ b/sys/dev/puc/puc_pccard.c @@ -46,7 +46,8 @@ const struct puc_device_description rscom_devices = { - "RS-com 2 port", + "ARGOSY SP320 Dual port serial PCMCIA", + /* http://www.argosy.com.tw/product/sp320.htm */ NULL, { 0, 0, 0, 0 }, { 0, 0, 0, 0 }, @@ -69,7 +70,6 @@ puc_pccard_probe(device_t dev) error = pccard_get_product_str(dev, &product); if (error) return(error); - printf("puc_pccard_probe <%s><%s>\n", vendor, product); if (!strcmp(vendor, "PCMCIA") && !strcmp(product, "RS-COM 2P")) { device_set_desc(dev, rscom_devices.name); return (0);