diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2011-06-24 17:29:41 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2011-06-24 17:29:41 +0000 |
| commit | 96a28bd684fcef82f10f7b10f0ac86d1d8644d50 (patch) | |
| tree | 4f6e5c95bf3d6dafeaf9eaf89c2f04894a808934 /sys/dev/pci | |
| parent | 1a3e3b32d8fbf5a8cc1da7bffeebf6d3d470abfb (diff) | |
Notes
Diffstat (limited to 'sys/dev/pci')
| -rw-r--r-- | sys/dev/pci/pci.c | 1 | ||||
| -rw-r--r-- | sys/dev/pci/pci_pci.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 1b1e4caf3484..c8e196b0ffe1 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -142,6 +142,7 @@ static device_method_t pci_methods[] = { DEVMETHOD(bus_get_resource, bus_generic_rl_get_resource), DEVMETHOD(bus_delete_resource, pci_delete_resource), DEVMETHOD(bus_alloc_resource, pci_alloc_resource), + DEVMETHOD(bus_adjust_resource, bus_generic_adjust_resource), DEVMETHOD(bus_release_resource, bus_generic_rl_release_resource), DEVMETHOD(bus_activate_resource, pci_activate_resource), DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), diff --git a/sys/dev/pci/pci_pci.c b/sys/dev/pci/pci_pci.c index 3d664baf9b78..cb8136c47c4b 100644 --- a/sys/dev/pci/pci_pci.c +++ b/sys/dev/pci/pci_pci.c @@ -68,6 +68,7 @@ static device_method_t pcib_methods[] = { DEVMETHOD(bus_read_ivar, pcib_read_ivar), DEVMETHOD(bus_write_ivar, pcib_write_ivar), DEVMETHOD(bus_alloc_resource, pcib_alloc_resource), + DEVMETHOD(bus_adjust_resource, bus_generic_adjust_resource), DEVMETHOD(bus_release_resource, bus_generic_release_resource), DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), |
