1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-11 09:50:12 +00:00

Forget to change lookup function for oldcard side.

This commit is contained in:
Takanori Watanabe 2002-05-30 18:48:44 +00:00
parent 686bea03e9
commit 154ce58548
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97617

View File

@ -383,9 +383,10 @@ pccard_deactivate_function(device_t bus, device_t child)
return (0);
}
const struct pccard_product *
pccard_product_lookup(device_t dev, const struct pccard_product *tab,
size_t ent_size, pccard_product_match_fn matchfn)
static const struct pccard_product *
pccard_do_product_lookup(device_t bus, device_t dev,
const struct pccard_product *tab,
size_t ent_size, pccard_product_match_fn matchfn)
{
return (NULL);
}
@ -424,6 +425,7 @@ static device_method_t pccard_methods[] = {
DEVMETHOD(card_deactivate_function, pccard_deactivate_function),
DEVMETHOD(card_compat_do_probe, pccard_compat_do_probe),
DEVMETHOD(card_compat_do_attach, pccard_compat_do_attach),
DEVMETHOD(card_do_product_lookup, pccard_do_product_lookup),
#endif
{ 0, 0 }
};