diff options
author | mjacob <mjacob@FreeBSD.org> | 2001-08-16 17:25:41 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2001-08-16 17:25:41 +0000 |
commit | 0fa99292336e18bd38aad9cc31021c9567172ae9 (patch) | |
tree | d653af5c6df71146e77584ab7d5c7aecc0ec756d | |
parent | a22f66edb058c7756aecf92309e8ef9e0fe0cecf (diff) | |
download | FreeBSD-src-0fa99292336e18bd38aad9cc31021c9567172ae9.zip FreeBSD-src-0fa99292336e18bd38aad9cc31021c9567172ae9.tar.gz |
Thanks to PHK for spotting: ISPASYNC_UNHANDLED_RESPONSE not
handle in isp_async.
-rw-r--r-- | sys/dev/isp/isp_freebsd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/isp/isp_freebsd.c b/sys/dev/isp/isp_freebsd.c index 422557d..a2a5375 100644 --- a/sys/dev/isp/isp_freebsd.c +++ b/sys/dev/isp/isp_freebsd.c @@ -2802,9 +2802,10 @@ isp_async(struct ispsoftc *isp, ispasync_t cmd, void *arg) isp_reinit(isp); break; } + case ISPASYNC_UNHANDLED_RESPONSE: + break; default: isp_prt(isp, ISP_LOGERR, "unknown isp_async event %d", cmd); - rv = -1; break; } return (rv); |