git: c154cad532e4 - stable/14 - hptmv: remove vestigial EVENTHANDLER_DEREGISTER()

From: Mitchell Horne <mhorne_at_FreeBSD.org>
Date: Fri, 08 Dec 2023 22:02:59 UTC
The branch stable/14 has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=c154cad532e4b786925d4fdda2cd57da7e6c12eb

commit c154cad532e4b786925d4fdda2cd57da7e6c12eb
Author:     Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2023-11-23 15:22:33 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2023-12-08 22:02:44 +0000

    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)
---
 sys/dev/hptmv/entry.c | 1 -
 sys/dev/hptmv/osbsd.h | 2 --
 2 files changed, 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;