diff options
author | imp <imp@FreeBSD.org> | 2003-08-24 05:18:10 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-08-24 05:18:10 +0000 |
commit | e0b18b1ee704ccac78df735fd72caa06d15bb6c5 (patch) | |
tree | d14e37d2a84e92751554fd69133b1518d02df8c1 /sys/dev/wi | |
parent | cdf6135faf5691df98905addfa24f8631d437d87 (diff) | |
download | FreeBSD-src-e0b18b1ee704ccac78df735fd72caa06d15bb6c5.zip FreeBSD-src-e0b18b1ee704ccac78df735fd72caa06d15bb6c5.tar.gz |
This doesn't work, so back them out.
Diffstat (limited to 'sys/dev/wi')
-rw-r--r-- | sys/dev/wi/if_wi_pccard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wi/if_wi_pccard.c b/sys/dev/wi/if_wi_pccard.c index 8c9a7c3..f5fb334 100644 --- a/sys/dev/wi/if_wi_pccard.c +++ b/sys/dev/wi/if_wi_pccard.c @@ -181,7 +181,7 @@ wi_pccard_match(dev) sizeof(wi_pccard_products[0]), NULL)) != NULL) { if (pp->pp_name != NULL) device_set_desc(dev, pp->pp_name); - return (-100); + return (0); } return (ENXIO); } @@ -208,7 +208,7 @@ wi_pccard_probe(dev) CSR_WRITE_2(sc, WI_INT_EN, 0); CSR_WRITE_2(sc, WI_EVENT_ACK, 0xFFFF); - return (-100); + return (0); } static int |