Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/amiga/dev Drop extra ().
details: https://anonhg.NetBSD.org/src/rev/fd74b00de94c
branches: trunk
changeset: 331281:fd74b00de94c
user: joerg <joerg%NetBSD.org@localhost>
date: Thu Aug 07 08:59:42 2014 +0000
description:
Drop extra ().
diffstat:
sys/arch/amiga/dev/sbic.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (39 lines):
diff -r 06b0719648da -r fd74b00de94c sys/arch/amiga/dev/sbic.c
--- a/sys/arch/amiga/dev/sbic.c Thu Aug 07 08:58:55 2014 +0000
+++ b/sys/arch/amiga/dev/sbic.c Thu Aug 07 08:59:42 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sbic.c,v 1.72 2014/01/22 00:25:16 christos Exp $ */
+/* $NetBSD: sbic.c,v 1.73 2014/08/07 08:59:42 joerg Exp $ */
/*
* Copyright (c) 1990 The Regents of the University of California.
@@ -81,7 +81,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sbic.c,v 1.72 2014/01/22 00:25:16 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sbic.c,v 1.73 2014/08/07 08:59:42 joerg Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -2060,17 +2060,17 @@
SET_SBIC_syn(regs,
SBIC_SYN(dev->sc_sync[dev->target].offset,
dev->sc_sync[dev->target].period));
- } else if ((dev->sc_msg[0] == MSG_REJECT)) {
+ } else if (dev->sc_msg[0] == MSG_REJECT) {
QPRINTF(("REJECT"));
/*
* we'll never REJECt a REJECT message..
*/
- } else if ((dev->sc_msg[0] == MSG_SAVE_DATA_PTR)) {
+ } else if (dev->sc_msg[0] == MSG_SAVE_DATA_PTR) {
QPRINTF(("MSG_SAVE_DATA_PTR"));
/*
* don't reject this either.
*/
- } else if ((dev->sc_msg[0] == MSG_DISCONNECT)) {
+ } else if (dev->sc_msg[0] == MSG_DISCONNECT) {
QPRINTF(("DISCONNECT"));
#ifdef DEBUG
if( reselect_debug>1 && dev->sc_msg[0] == MSG_DISCONNECT )
Home |
Main Index |
Thread Index |
Old Index