Source-Changes-HG archive

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

[src/netbsd-6]: src/sys/dev Pull up following revision(s) (requested by riast...



details:   https://anonhg.NetBSD.org/src/rev/6f0b38e19db4
branches:  netbsd-6
changeset: 776713:6f0b38e19db4
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Mon Sep 29 18:46:27 2014 +0000

description:
Pull up following revision(s) (requested by riastradh in ticket #1120):
        sys/dev/pci/radeonfb.c: revision 1.84
        sys/dev/wsfb/genfb.c: revision 1.54
Do not printf(foobar()).  Bad bad bad bad bad!

diffstat:

 sys/dev/pci/radeonfb.c |  6 +++---
 sys/dev/wsfb/genfb.c   |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r 16d6c429c5f5 -r 6f0b38e19db4 sys/dev/pci/radeonfb.c
--- a/sys/dev/pci/radeonfb.c    Mon Sep 29 18:41:50 2014 +0000
+++ b/sys/dev/pci/radeonfb.c    Mon Sep 29 18:46:27 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: radeonfb.c,v 1.53.2.1 2012/03/21 16:12:18 riz Exp $ */
+/*     $NetBSD: radeonfb.c,v 1.53.2.2 2014/09/29 18:46:27 msaitoh Exp $ */
 
 /*-
  * Copyright (c) 2006 Itronix Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: radeonfb.c,v 1.53.2.1 2012/03/21 16:12:18 riz Exp $");
+__KERNEL_RCSID(0, "$NetBSD: radeonfb.c,v 1.53.2.2 2014/09/29 18:46:27 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -453,7 +453,7 @@
 
        pci_aprint_devinfo(pa, NULL);
 
-       DPRINTF((prop_dictionary_externalize(device_properties(dev))));
+       DPRINTF(("%s", prop_dictionary_externalize(device_properties(dev))));
 
        KASSERT(radeonfb_devices[i].devid != 0);
        sc->sc_pt = pa->pa_tag;
diff -r 16d6c429c5f5 -r 6f0b38e19db4 sys/dev/wsfb/genfb.c
--- a/sys/dev/wsfb/genfb.c      Mon Sep 29 18:41:50 2014 +0000
+++ b/sys/dev/wsfb/genfb.c      Mon Sep 29 18:46:27 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: genfb.c,v 1.47.2.1 2013/02/13 20:52:06 riz Exp $ */
+/*     $NetBSD: genfb.c,v 1.47.2.2 2014/09/29 18:46:27 msaitoh Exp $ */
 
 /*-
  * Copyright (c) 2007 Michael Lorenz
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.47.2.1 2013/02/13 20:52:06 riz Exp $");
+__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.47.2.2 2014/09/29 18:46:27 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -96,7 +96,7 @@
 
        dict = device_properties(sc->sc_dev);
 #ifdef GENFB_DEBUG
-       printf(prop_dictionary_externalize(dict));
+       printf("%s", prop_dictionary_externalize(dict));
 #endif
        prop_dictionary_get_bool(dict, "is_console", &console);
 



Home | Main Index | Thread Index | Old Index