Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Kill redundant ()



details:   https://anonhg.NetBSD.org/src/rev/8a869f749df4
branches:  trunk
changeset: 765365:8a869f749df4
user:      joerg <joerg%NetBSD.org@localhost>
date:      Tue May 24 16:38:25 2011 +0000

description:
Kill redundant ()

diffstat:

 sys/dev/ic/iha.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 634d551e6cea -r 8a869f749df4 sys/dev/ic/iha.c
--- a/sys/dev/ic/iha.c  Tue May 24 16:37:49 2011 +0000
+++ b/sys/dev/ic/iha.c  Tue May 24 16:38:25 2011 +0000
@@ -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;
        }



Home | Main Index | Thread Index | Old Index