summaryrefslogtreecommitdiffstats
path: root/sys/dev/if_ndis/if_ndis_pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/if_ndis/if_ndis_pci.c')
-rw-r--r--sys/dev/if_ndis/if_ndis_pci.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/dev/if_ndis/if_ndis_pci.c b/sys/dev/if_ndis/if_ndis_pci.c
index 7602dd1..47c2f69 100644
--- a/sys/dev/if_ndis/if_ndis_pci.c
+++ b/sys/dev/if_ndis/if_ndis_pci.c
@@ -84,6 +84,8 @@ static struct ndis_pci_type ndis_devs[] = {
static int ndis_probe_pci (device_t);
static int ndis_attach_pci (device_t);
+static struct resource_list *ndis_get_resource_list
+ (device_t, device_t);
extern int ndis_attach (device_t);
extern int ndis_shutdown (device_t);
extern int ndis_detach (device_t);
@@ -101,6 +103,9 @@ static device_method_t ndis_methods[] = {
DEVMETHOD(device_suspend, ndis_suspend),
DEVMETHOD(device_resume, ndis_resume),
+ /* Bus interface */
+ DEVMETHOD(bus_get_resource_list, ndis_get_resource_list),
+
{ 0, 0 }
};
@@ -321,4 +326,15 @@ fail:
return(error);
}
+static struct resource_list *
+ndis_get_resource_list(dev, child)
+ device_t dev;
+ device_t child;
+{
+ struct ndis_softc *sc;
+
+ sc = device_get_softc(dev);
+ return (BUS_GET_RESOURCE_LIST(device_get_parent(sc->ndis_dev), dev));
+}
+
#endif /* NDIS_PCI_DEV_TABLE */
OpenPOWER on IntegriCloud