Remove return after panic().
This commit is contained in:
parent
abc7f80ca5
commit
7feb1a91fa
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue