diff options
author | imp <imp@FreeBSD.org> | 2005-09-13 19:56:07 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-09-13 19:56:07 +0000 |
commit | 6854071b1a929601c7e87fe24a5dadd83ae55e1e (patch) | |
tree | 30077fc6b9c28e079f3cc4c7011ba9606543b572 | |
parent | a5f6964a8c5aceb6f4704ca79e07981431da8500 (diff) | |
download | FreeBSD-src-6854071b1a929601c7e87fe24a5dadd83ae55e1e.zip FreeBSD-src-6854071b1a929601c7e87fe24a5dadd83ae55e1e.tar.gz |
MFp4: Migrate from CARD_CIS_SCAN to pccard_cis_scan
-rw-r--r-- | sys/dev/ep/if_ep_pccard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ep/if_ep_pccard.c b/sys/dev/ep/if_ep_pccard.c index b7fdcab..37f494b 100644 --- a/sys/dev/ep/if_ep_pccard.c +++ b/sys/dev/ep/if_ep_pccard.c @@ -197,7 +197,7 @@ ep_pccard_attach(device_t dev) * CIS tuple to the one returned by the card, as it appears that * only those cards that need it have this special tuple. */ - if (CARD_CIS_SCAN(device_get_parent(dev), ep_pccard_mac, sc->eaddr)) + if (pccard_cis_scan(dev, ep_pccard_mac, sc->eaddr)) sc->stat |= F_ENADDR_SKIP; if ((error = ep_attach(sc))) { device_printf(dev, "ep_attach() failed! (%d)\n", error); |