Module Name:    src
Committed By:   dholland
Date:           Sun Jun  6 06:12:49 UTC 2010

Modified Files:
        src/sys/arch/hpcmips/tx: tx39io.c

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


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/hpcmips/tx/tx39io.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/arch/hpcmips/tx/tx39io.c
diff -u src/sys/arch/hpcmips/tx/tx39io.c:1.21 src/sys/arch/hpcmips/tx/tx39io.c:1.22
--- src/sys/arch/hpcmips/tx/tx39io.c:1.21	Mon Apr 28 20:23:21 2008
+++ src/sys/arch/hpcmips/tx/tx39io.c	Sun Jun  6 06:12:49 2010
@@ -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)

Reply via email to