Module Name: src
Committed By: joerg
Date: Tue May 24 16:38:25 UTC 2011
Modified Files:
src/sys/dev/ic: iha.c
Log Message:
Kill redundant ()
To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/ic/iha.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/ic/iha.c
diff -u src/sys/dev/ic/iha.c:1.41 src/sys/dev/ic/iha.c:1.42
--- src/sys/dev/ic/iha.c:1.41 Sat Nov 13 13:52:01 2010
+++ src/sys/dev/ic/iha.c Tue May 24 16:38:25 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: iha.c,v 1.41 2010/11/13 13:52:01 uebayasi Exp $ */
+/* $NetBSD: iha.c,v 1.42 2011/05/24 16:38:25 joerg Exp $ */
/*-
* Copyright (c) 2001, 2002 Izumi Tsutsui
@@ -62,7 +62,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: iha.c,v 1.41 2010/11/13 13:52:01 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: iha.c,v 1.42 2011/05/24 16:38:25 joerg Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -2169,7 +2169,7 @@
uint8_t tag, target, lun, msg, abortmsg;
if (sc->sc_actscb != NULL) {
- if ((sc->sc_actscb->status == STATUS_SELECT))
+ if (sc->sc_actscb->status == STATUS_SELECT)
iha_push_pend_scb(sc, sc->sc_actscb);
sc->sc_actscb = NULL;
}