aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/sio
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>1999-10-28 05:06:14 +0000
committerWarner Losh <imp@FreeBSD.org>1999-10-28 05:06:14 +0000
commit806338b15dadab05b391f7bd5b8154c4be99a0b0 (patch)
treeafd22399ee8fa07b71bfe89e5d7c4055ad7f9a27 /sys/dev/sio
parent12e0beb470cf5766e06a59206d30770b5766f9e5 (diff)
downloadsrc-806338b15dadab05b391f7bd5b8154c4be99a0b0.tar.gz
src-806338b15dadab05b391f7bd5b8154c4be99a0b0.zip
Last change to pccard_nbk now obviates the need to check the name of
the device in question. Also fix warnings on if_ep_pccard.c
Notes
Notes: svn path=/head/; revision=52585
Diffstat (limited to 'sys/dev/sio')
-rw-r--r--sys/dev/sio/sio.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index 30b2b487cc55..8ec8bd0203a0 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -489,13 +489,6 @@ static int
sio_pccard_probe(dev)
device_t dev;
{
- const char *name;
-
- name = pccard_get_name(dev);
- printf("sio_pccard_probe: Does %s match?\n", name);
- if (strcmp(name, "sio"))
- return ENXIO;
-
return (sioprobe(dev));
}