Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/omap Don't steal the console by default.



details:   https://anonhg.NetBSD.org/src/rev/96a4cababc39
branches:  trunk
changeset: 783227:96a4cababc39
user:      matt <matt%NetBSD.org@localhost>
date:      Tue Dec 11 22:47:40 2012 +0000

description:
Don't steal the console by default.

diffstat:

 sys/arch/arm/omap/omapfb.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r ff328de01cdc -r 96a4cababc39 sys/arch/arm/omap/omapfb.c
--- a/sys/arch/arm/omap/omapfb.c        Tue Dec 11 21:57:41 2012 +0000
+++ b/sys/arch/arm/omap/omapfb.c        Tue Dec 11 22:47:40 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: omapfb.c,v 1.5 2012/12/11 21:57:41 macallan Exp $      */
+/*     $NetBSD: omapfb.c,v 1.6 2012/12/11 22:47:40 matt Exp $  */
 
 /*
  * Copyright (c) 2010 Michael Lorenz
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: omapfb.c,v 1.5 2012/12/11 21:57:41 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: omapfb.c,v 1.6 2012/12/11 22:47:40 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -208,7 +208,7 @@
 #endif 
        dict = device_properties(self);
        prop_dictionary_get_bool(dict, "is_console", &is_console);
-       is_console = 1;
+       //is_console = 1;
 
        /* setup video DMA */
        sc->sc_vramsize = (12 << 20) + 0x1000; /* 12MB + CLUT */



Home | Main Index | Thread Index | Old Index