diff options
author | phk <phk@FreeBSD.org> | 2003-05-31 19:49:49 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-05-31 19:49:49 +0000 |
commit | 016c73a70c81e64dad0868af48650a5b2564db58 (patch) | |
tree | f4ef0e39c602932d77abf5fa9fc98c79d4acc2a0 /sys/dev/isp/isp_target.c | |
parent | 78fe3fef1aec34c8c496109d7ac5707151339237 (diff) | |
download | FreeBSD-src-016c73a70c81e64dad0868af48650a5b2564db58.zip FreeBSD-src-016c73a70c81e64dad0868af48650a5b2564db58.tar.gz |
Remove unused variables
Add /* FALLTHROUGH */
Found by: FlexeLint
Diffstat (limited to 'sys/dev/isp/isp_target.c')
-rw-r--r-- | sys/dev/isp/isp_target.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/isp/isp_target.c b/sys/dev/isp/isp_target.c index c737cf1..9d23805 100644 --- a/sys/dev/isp/isp_target.c +++ b/sys/dev/isp/isp_target.c @@ -1113,9 +1113,11 @@ isp_handle_ctio2(struct ispsoftc *isp, ct2_entry_t *ct) case CT_PORTNOTAVAIL: if (fmsg == NULL) fmsg = "Port not available"; + /*FALLTHROUGH*/ case CT_PORTCHANGED: if (fmsg == NULL) fmsg = "Port Changed"; + /*FALLTHROUGH*/ case CT_NOACK: if (fmsg == NULL) fmsg = "unacknowledged Immediate Notify pending"; |