From cd3ef66680a8939f043eb601679c18e9c90f28fc Mon Sep 17 00:00:00 2001 From: Xin LI Date: Thu, 9 Apr 2009 07:45:23 +0000 Subject: [PATCH] Use DEVICE_SHUTDOWN(9) mechanism for shutdown handler. Suggested by: jhb --- sys/dev/hptmv/entry.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/sys/dev/hptmv/entry.c b/sys/dev/hptmv/entry.c index 04148857334..843281a6bd5 100644 --- a/sys/dev/hptmv/entry.c +++ b/sys/dev/hptmv/entry.c @@ -93,7 +93,7 @@ static device_method_t driver_methods[] = { DEVMETHOD(device_attach, hpt_attach), DEVMETHOD(device_detach, hpt_detach), -/* DEVMETHOD(device_shutdown, hpt_shutdown), */ + DEVMETHOD(device_shutdown, hpt_shutdown), { 0, 0 } }; @@ -2138,13 +2138,7 @@ hpt_attach(device_t dev) xpt_action((union ccb *)ccb); free(ccb, M_DEVBUF); - /* Register a shutdown handler to flush data for the current adapter */ - pAdapter->eh = EVENTHANDLER_REGISTER(shutdown_final, - hpt_shutdown, dev, SHUTDOWN_PRI_DEFAULT); - if (pAdapter->eh == NULL) { - device_printf(pAdapter->hpt_dev, - "shutdown event registration failed\n"); - } else if (device_get_unit(dev) == 0) { + if (device_get_unit(dev) == 0) { /* Start the work thread. XXX */ launch_worker_thread(); }