Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hpcmips/tx Add missing backslash in macro definitio...



details:   https://anonhg.NetBSD.org/src/rev/bd6e36639b1b
branches:  trunk
changeset: 755440:bd6e36639b1b
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sun Jun 06 06:12:49 2010 +0000

description:
Add missing backslash in macro definition in apparently-disused #if branch.
(has been this way since 2001)
>From Henning Petersen in PR 42525.

diffstat:

 sys/arch/hpcmips/tx/tx39io.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b6791639e892 -r bd6e36639b1b sys/arch/hpcmips/tx/tx39io.c
--- a/sys/arch/hpcmips/tx/tx39io.c      Sun Jun 06 06:10:03 2010 +0000
+++ b/sys/arch/hpcmips/tx/tx39io.c      Sun Jun 06 06:12:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tx39io.c,v 1.21 2008/04/28 20:23:21 martin Exp $ */
+/*     $NetBSD: tx39io.c,v 1.22 2010/06/06 06:12:49 dholland Exp $ */
 
 /*-
  * Copyright (c) 1999-2001 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tx39io.c,v 1.21 2008/04/28 20:23:21 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tx39io.c,v 1.22 2010/06/06 06:12:49 dholland Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -86,7 +86,7 @@
 #endif
 #if defined TX391X && defined TX392X
 #define        tx39_io_intr_map(t, s, p, m)                                    \
-       (IS_TX391X(t)
+       (IS_TX391X(t)                                                   \
            ? tx391x_io_intr_map(s, p, m) : tx392x_io_intr_map(s, p, m))
 #elif defined TX391X
 #define        tx39io_intr_map(t, s, p, m)     tx391x_io_intr_map(s, p, m)



Home | Main Index | Thread Index | Old Index