diff options
author | Marius Strobl <marius@FreeBSD.org> | 2011-11-22 21:55:40 +0000 |
---|---|---|
committer | Marius Strobl <marius@FreeBSD.org> | 2011-11-22 21:55:40 +0000 |
commit | 848e30ff519e332f8f8d11ace65d86fb15470258 (patch) | |
tree | a76b6a370d61cdfa3d0335a05c8e3bb1cf84e719 /sys/dev/esp | |
parent | 5b288d2abf5dd14860caba37aa6d44a4ffa197d8 (diff) | |
download | src-test2-848e30ff519e332f8f8d11ace65d86fb15470258.tar.gz src-test2-848e30ff519e332f8f8d11ace65d86fb15470258.zip |
Notes
Diffstat (limited to 'sys/dev/esp')
-rw-r--r-- | sys/dev/esp/esp_pci.c | 2 | ||||
-rw-r--r-- | sys/dev/esp/esp_sbus.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/esp/esp_pci.c b/sys/dev/esp/esp_pci.c index 2fa2030659de..cd88f6bbfa5a 100644 --- a/sys/dev/esp/esp_pci.c +++ b/sys/dev/esp/esp_pci.c @@ -146,7 +146,7 @@ static device_method_t esp_pci_methods[] = { DEVMETHOD(device_suspend, esp_pci_suspend), DEVMETHOD(device_resume, esp_pci_resume), - KOBJMETHOD_END + DEVMETHOD_END }; static driver_t esp_pci_driver = { diff --git a/sys/dev/esp/esp_sbus.c b/sys/dev/esp/esp_sbus.c index c1ff021ee526..01ffb8d58fae 100644 --- a/sys/dev/esp/esp_sbus.c +++ b/sys/dev/esp/esp_sbus.c @@ -117,7 +117,7 @@ static device_method_t esp_dma_methods[] = { DEVMETHOD(device_suspend, esp_suspend), DEVMETHOD(device_resume, esp_resume), - KOBJMETHOD_END + DEVMETHOD_END }; static driver_t esp_dma_driver = { @@ -136,7 +136,7 @@ static device_method_t esp_sbus_methods[] = { DEVMETHOD(device_suspend, esp_suspend), DEVMETHOD(device_resume, esp_resume), - KOBJMETHOD_END + DEVMETHOD_END }; static driver_t esp_sbus_driver = { |