diff options
| author | Warner Losh <imp@FreeBSD.org> | 2005-01-20 20:03:37 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2005-01-20 20:03:37 +0000 |
| commit | 9273a2b597ca65ac44bbb7bbeefdec5ccca9e848 (patch) | |
| tree | 2821ea8a19ae826e67aea3e70f7c44196b88ad15 /sys/dev/ex | |
| parent | e30d646d97e69f7cccace5b24b7f5c78e6777bf3 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ex')
| -rw-r--r-- | sys/dev/ex/if_ex_pccard.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/dev/ex/if_ex_pccard.c b/sys/dev/ex/if_ex_pccard.c index 1d1c383760f2..d0daa92fd21c 100644 --- a/sys/dev/ex/if_ex_pccard.c +++ b/sys/dev/ex/if_ex_pccard.c @@ -48,6 +48,7 @@ __FBSDID("$FreeBSD$"); #include <dev/ex/if_exvar.h> #include <dev/pccard/pccardvar.h> +#include <dev/pccard/pccard_cis.h> #include "pccarddevs.h" @@ -88,6 +89,12 @@ static int ex_pccard_match(device_t dev) { const struct pccard_product *pp; + /* Make sure we're a network function */ + error = pccard_get_function(dev, &fcn); + if (error != 0) + return (error); + if (fcn != PCCARD_FUNCTION_NETWORK) + return (ENXIO); if ((pp = pccard_product_lookup(dev, ex_pccard_products, sizeof(ex_pccard_products[0]), NULL)) != NULL) { |
