Noisy printfs.
This commit is contained in:
parent
3c1048714b
commit
0136093bcb
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: genfb_pci.c,v 1.2 2007/11/19 04:03:44 macallan Exp $ */
|
||||
/* $NetBSD: genfb_pci.c,v 1.3 2007/12/01 16:54:28 ad Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2007 Michael Lorenz
|
||||
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: genfb_pci.c,v 1.2 2007/11/19 04:03:44 macallan Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: genfb_pci.c,v 1.3 2007/12/01 16:54:28 ad Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -169,7 +169,7 @@ static int
|
|||
pci_genfb_drm_print(void *aux, const char *pnp)
|
||||
{
|
||||
if (pnp)
|
||||
aprint_normal("direct rendering for %s", pnp);
|
||||
aprint_verbose("direct rendering for %s", pnp);
|
||||
return (UNSUPP);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: radeonfb.c,v 1.22 2007/11/26 09:39:50 bjs Exp $ */
|
||||
/* $NetBSD: radeonfb.c,v 1.23 2007/12/01 16:54:28 ad Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2006 Itronix Inc.
|
||||
|
@ -70,7 +70,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: radeonfb.c,v 1.22 2007/11/26 09:39:50 bjs Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: radeonfb.c,v 1.23 2007/12/01 16:54:28 ad Exp $");
|
||||
|
||||
#define RADEONFB_DEFAULT_DEPTH 32
|
||||
|
||||
|
@ -910,7 +910,7 @@ static int
|
|||
radeonfb_drm_print(void *aux, const char *pnp)
|
||||
{
|
||||
if (pnp)
|
||||
aprint_normal("direct rendering for %s", pnp);
|
||||
aprint_verbose("direct rendering for %s", pnp);
|
||||
return (UNSUPP);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: unichromefb.c,v 1.8 2007/10/19 12:00:56 ad Exp $ */
|
||||
/* $NetBSD: unichromefb.c,v 1.9 2007/12/01 16:54:28 ad Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2006 Jared D. McNeill <jmcneill@invisible.ca>
|
||||
|
@ -57,7 +57,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: unichromefb.c,v 1.8 2007/10/19 12:00:56 ad Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: unichromefb.c,v 1.9 2007/12/01 16:54:28 ad Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -367,7 +367,7 @@ static int
|
|||
unichromefb_drm_print(void *opaque, const char *pnp)
|
||||
{
|
||||
if (pnp)
|
||||
aprint_normal("direct rendering for %s", pnp);
|
||||
aprint_verbose("direct rendering for %s", pnp);
|
||||
|
||||
return UNSUPP;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: vga_pci.c,v 1.34 2007/12/01 05:22:27 jmcneill Exp $ */
|
||||
/* $NetBSD: vga_pci.c,v 1.35 2007/12/01 16:54:29 ad Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -28,7 +28,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: vga_pci.c,v 1.34 2007/12/01 05:22:27 jmcneill Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: vga_pci.c,v 1.35 2007/12/01 16:54:29 ad Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -234,7 +234,7 @@ int
|
|||
vga_drm_print(void *aux, const char *pnp)
|
||||
{
|
||||
if (pnp)
|
||||
aprint_normal("direct rendering for %s", pnp);
|
||||
aprint_verbose("direct rendering for %s", pnp);
|
||||
return (UNSUPP);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: voodoofb.c,v 1.10 2007/06/12 18:16:54 xtraeme Exp $ */
|
||||
/* $NetBSD: voodoofb.c,v 1.11 2007/12/01 16:54:29 ad Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005, 2006 Michael Lorenz
|
||||
|
@ -34,7 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: voodoofb.c,v 1.10 2007/06/12 18:16:54 xtraeme Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: voodoofb.c,v 1.11 2007/12/01 16:54:29 ad Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -467,7 +467,7 @@ static int
|
|||
voodoofb_drm_print(void *opaque, const char *pnp)
|
||||
{
|
||||
if (pnp)
|
||||
aprint_normal("direct rendering for %s", pnp);
|
||||
aprint_verbose("direct rendering for %s", pnp);
|
||||
|
||||
return UNSUPP;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue