From fa024f017ee113aa23421d582dcd88fe21d27878 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 28 Sep 2000 07:22:30 +0000 Subject: [PATCH] Add pccard_product_lookup comatibility shim --- sys/pccard/pccard_nbk.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys/pccard/pccard_nbk.c b/sys/pccard/pccard_nbk.c index 821a88a5294..2d951f02a24 100644 --- a/sys/pccard/pccard_nbk.c +++ b/sys/pccard/pccard_nbk.c @@ -340,6 +340,13 @@ 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) +{ + return NULL; +} + static device_method_t pccard_methods[] = { /* Device interface */ DEVMETHOD(device_probe, pccard_probe),