aprint_verbose -> aprint_debug

This commit is contained in:
jmcneill 2013-01-09 01:57:59 +00:00
parent 1cb4b44ff4
commit 1f7593441b
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: bcm2835_gpio_subr.c,v 1.1 2013/01/05 19:55:18 jakllsch Exp $ */
/* $NetBSD: bcm2835_gpio_subr.c,v 1.2 2013/01/09 01:58:41 jmcneill Exp $ */
/*
* Copyright (c) 2013 Jonathan A. Kollasch
@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bcm2835_gpio_subr.c,v 1.1 2013/01/05 19:55:18 jakllsch Exp $");
__KERNEL_RCSID(0, "$NetBSD: bcm2835_gpio_subr.c,v 1.2 2013/01/09 01:58:41 jmcneill Exp $");
#include <sys/param.h>
#include <sys/device.h>
@ -60,7 +60,7 @@ bcm2835gpio_function_select(u_int pin, u_int func)
return;
}
aprint_verbose("bcm2835: changing FSEL%u to %#o\n", pin, func);
aprint_debug("bcm2835: changing FSEL%u to %#o\n", pin, func);
v &= ~(mask << shift);
v |= (func << shift);

View File

@ -1,4 +1,4 @@
/* $NetBSD: genfb.c,v 1.48 2012/04/12 22:36:15 macallan Exp $ */
/* $NetBSD: genfb.c,v 1.49 2013/01/09 01:57:59 jmcneill Exp $ */
/*-
* Copyright (c) 2007 Michael Lorenz
@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.48 2012/04/12 22:36:15 macallan Exp $");
__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.49 2013/01/09 01:57:59 jmcneill Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -61,7 +61,7 @@ __KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.48 2012/04/12 22:36:15 macallan Exp $");
#ifdef GENFB_DEBUG
#define GPRINTF panic
#else
#define GPRINTF aprint_verbose
#define GPRINTF aprint_debug
#endif
#define GENFB_BRIGHTNESS_STEP 15