diff options
| author | simonb <simonb@NetBSD.org> | 2003-10-21 06:22:16 +0000 |
|---|---|---|
| committer | simonb <simonb@NetBSD.org> | 2003-10-21 06:22:16 +0000 |
| commit | 7feb1a91faac3d59ea9adf30ee986a6a9be9ab74 (patch) | |
| tree | 8b7bd8b838779ff8b448276d2fe56702cf209adb /sys/dev/ic | |
| parent | abc7f80ca5b0000dedb8e228bd26173a41c12c16 (diff) | |
Remove return after panic().
Diffstat (limited to 'sys/dev/ic')
| -rw-r--r-- | sys/dev/ic/siop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/siop.c b/sys/dev/ic/siop.c index d138daf02ef..785f7c789d6 100644 --- a/sys/dev/ic/siop.c +++ b/sys/dev/ic/siop.c @@ -1,4 +1,4 @@ -/* $NetBSD: siop.c,v 1.66 2003/05/03 18:11:23 wiz Exp $ */ +/* $NetBSD: siop.c,v 1.67 2003/10/21 06:22:16 simonb Exp $ */ /* * Copyright (c) 2000 Manuel Bouyer. @@ -33,7 +33,7 @@ /* SYM53c7/8xx PCI-SCSI I/O Processors driver */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.66 2003/05/03 18:11:23 wiz Exp $"); +__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.67 2003/10/21 06:22:16 simonb Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -935,7 +935,7 @@ scintr: } /* We just should't get there */ panic("siop_intr: I shouldn't be there !"); - return 1; + end: /* * restart the script now if command completed properly |
