Remove a debug printf.

Correctly identify the ARGOSY SP320 dual port serial PCMCIA card.
This commit is contained in:
Poul-Henning Kamp 2002-09-03 11:31:34 +00:00
parent 13c33c582a
commit b4dde36292
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102897

View file

@ -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);