Source-Changes-HG archive

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

[src/netbsd-3-0]: src/sys/arch/xen/x86 Pull up following revision(s) (request...



details:   https://anonhg.NetBSD.org/src/rev/d7f2f3fa6493
branches:  netbsd-3-0
changeset: 579358:d7f2f3fa6493
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Dec 11 13:25:14 2006 +0000

description:
Pull up following revision(s) (requested by bouyer in ticket #1600):
        sys/arch/xen/x86/consinit.c: revision 1.7
Remove extra ) causing compile failure when CONS_OVERRIDE is defined.
>From Hideo Masuda in PR port-xen/35217.

diffstat:

 sys/arch/xen/x86/consinit.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 8817e4600f0b -r d7f2f3fa6493 sys/arch/xen/x86/consinit.c
--- a/sys/arch/xen/x86/consinit.c       Wed Dec 06 13:30:09 2006 +0000
+++ b/sys/arch/xen/x86/consinit.c       Mon Dec 11 13:25:14 2006 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: consinit.c,v 1.4.2.1 2005/06/28 10:29:17 tron Exp $    */
+/*     $NetBSD: consinit.c,v 1.4.2.1.2.1 2006/12/11 13:25:14 tron Exp $        */
 /*     NetBSD: consinit.c,v 1.4 2004/03/13 17:31:34 bjh21 Exp  */
 
 /*
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: consinit.c,v 1.4.2.1 2005/06/28 10:29:17 tron Exp $");
+__KERNEL_RCSID(0, "$NetBSD: consinit.c,v 1.4.2.1.2.1 2006/12/11 13:25:14 tron Exp $");
 
 #include "opt_kgdb.h"
 
@@ -168,7 +168,7 @@
        if (xen_start_info.flags & SIF_PRIVILEGED) {
 #ifdef CONS_OVERRIDE
                if (strcmp(default_consinfo.devname, "tty0") == 0 ||
-                   strcmp(default_consinfo.devname, "pc") == 0)) {
+                   strcmp(default_consinfo.devname, "pc") == 0) {
 #else
                if (strcmp(xcp.xcp_console, "tty0") == 0 || /* linux name */
                    strcmp(xcp.xcp_console, "pc") == 0) { /* NetBSD name */



Home | Main Index | Thread Index | Old Index