Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/ic Fix surplus ( that was forgotten to remove in the...



details:   https://anonhg.NetBSD.org/src/rev/a2de5532adcc
branches:  trunk
changeset: 780116:a2de5532adcc
user:      reinoud <reinoud%NetBSD.org@localhost>
date:      Thu Jul 12 14:17:03 2012 +0000

description:
Fix surplus ( that was forgotten to remove in the DRIVE_ to DRIVET_ rototol.

diffstat:

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

diffs (27 lines):

diff -r bcb182ab7558 -r a2de5532adcc sys/dev/ic/mvsata.c
--- a/sys/dev/ic/mvsata.c       Thu Jul 12 12:43:06 2012 +0000
+++ b/sys/dev/ic/mvsata.c       Thu Jul 12 14:17:03 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mvsata.c,v 1.17 2012/07/02 18:15:46 bouyer Exp $       */
+/*     $NetBSD: mvsata.c,v 1.18 2012/07/12 14:17:03 reinoud Exp $      */
 /*
  * Copyright (c) 2008 KIYOHARA Takashi
  * All rights reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mvsata.c,v 1.17 2012/07/02 18:15:46 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mvsata.c,v 1.18 2012/07/12 14:17:03 reinoud Exp $");
 
 #include "opt_mvsata.h"
 
@@ -792,7 +792,7 @@
                return;
 
        /* if no ATAPI device detected at attach time, skip */
-       if ((drvp->drive_type != DRIVET_ATAPI) {
+       if (drvp->drive_type != DRIVET_ATAPI) {
                DPRINTF(("%s:%d: mvsata_atapi_probe_device:"
                    " drive %d not present\n",
                    device_xname(atac->atac_dev), chp->ch_channel, target));



Home | Main Index | Thread Index | Old Index