summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2003-12-27 19:47:10 +0000
committerWarner Losh <imp@FreeBSD.org>2003-12-27 19:47:10 +0000
commit4acf0ddea2d9ccd0781a0f4c2806617f7aef15a9 (patch)
tree793726f72acd1b2eb12eba48017d23bfcd8faf4a
parent34d26757614c68050f69ea58ed9415ed3218a7af (diff)
Notes
-rw-r--r--sys/dev/sio/sio_ebus.c1
-rw-r--r--sys/dev/sio/sio_isa.c1
-rw-r--r--sys/dev/sio/sio_puc.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/sio/sio_ebus.c b/sys/dev/sio/sio_ebus.c
index 54f1c9361c326..c4caafe5e381a 100644
--- a/sys/dev/sio/sio_ebus.c
+++ b/sys/dev/sio/sio_ebus.c
@@ -48,6 +48,7 @@ static device_method_t sio_ebus_methods[] = {
/* Device interface */
DEVMETHOD(device_probe, sio_ebus_probe),
DEVMETHOD(device_attach, sio_ebus_attach),
+ DEVMETHOD(device_detach, siodetach),
{ 0, 0 }
};
diff --git a/sys/dev/sio/sio_isa.c b/sys/dev/sio/sio_isa.c
index 99d794d4b5801..137f47ecde5f6 100644
--- a/sys/dev/sio/sio_isa.c
+++ b/sys/dev/sio/sio_isa.c
@@ -51,6 +51,7 @@ static device_method_t sio_isa_methods[] = {
/* Device interface */
DEVMETHOD(device_probe, sio_isa_probe),
DEVMETHOD(device_attach, sio_isa_attach),
+ DEVMETHOD(device_detach, siodetach),
{ 0, 0 }
};
diff --git a/sys/dev/sio/sio_puc.c b/sys/dev/sio/sio_puc.c
index 08c0f044320ac..877a03966d07a 100644
--- a/sys/dev/sio/sio_puc.c
+++ b/sys/dev/sio/sio_puc.c
@@ -52,6 +52,7 @@ static device_method_t sio_puc_methods[] = {
/* Device interface */
DEVMETHOD(device_probe, sio_puc_probe),
DEVMETHOD(device_attach, sio_puc_attach),
+ DEVMETHOD(device_detach, siodetach),
{ 0, 0 }
};