aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitchell Horne <mhorne@FreeBSD.org>2023-11-23 15:22:33 +0000
committerMitchell Horne <mhorne@FreeBSD.org>2023-12-08 22:02:44 +0000
commitc154cad532e4b786925d4fdda2cd57da7e6c12eb (patch)
treee482a6cff4f3a254de717b1e84a2bbf9affa7d6d
parente48c3d3a06db6a435207f6c08b4d31e9deb242e7 (diff)
downloadsrc-c154cad532e4b786925d4fdda2cd57da7e6c12eb.tar.gz
src-c154cad532e4b786925d4fdda2cd57da7e6c12eb.zip
hptmv: remove vestigial EVENTHANDLER_DEREGISTER()
The registration was removed in favor of DEVICE_SHUTDOWN(). Drop the unused eventhandler tag from the IAL_ADAPTER_T structure. Reviewed by: jhb Sponsored by: The FreeBSD Foundation MFC after: 3 days Fixes: cd3ef66680a8 ("Use DEVICE_SHUTDOWN(9) mechanism...") Differential Revision: https://reviews.freebsd.org/D42334 (cherry picked from commit a4b19cf5c76ac66d02a3ef8a549115ba865d630c)
-rw-r--r--sys/dev/hptmv/entry.c1
-rw-r--r--sys/dev/hptmv/osbsd.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/sys/dev/hptmv/entry.c b/sys/dev/hptmv/entry.c
index fd3b808e1e73..0157a27c3728 100644
--- a/sys/dev/hptmv/entry.c
+++ b/sys/dev/hptmv/entry.c
@@ -2155,7 +2155,6 @@ hpt_shutdown(device_t dev)
pAdapter = device_get_softc(dev);
- EVENTHANDLER_DEREGISTER(shutdown_final, pAdapter->eh);
mtx_lock(&pAdapter->lock);
FlushAdapter(pAdapter);
mtx_unlock(&pAdapter->lock);
diff --git a/sys/dev/hptmv/osbsd.h b/sys/dev/hptmv/osbsd.h
index a9240af16c89..0e4d94fb4756 100644
--- a/sys/dev/hptmv/osbsd.h
+++ b/sys/dev/hptmv/osbsd.h
@@ -190,8 +190,6 @@ typedef struct IALAdapter
UCHAR status;
UCHAR ver_601;
UCHAR beeping;
-
- eventhandler_tag eh;
}
IAL_ADAPTER_T;