Replace all occurrences of vdbg with vinfo

This commit is contained in:
Gregory Nutt
2016-06-11 11:59:51 -06:00
parent 3a74a438d9
commit fc3540cffe
845 changed files with 5817 additions and 5817 deletions
+1 -1
View File
@@ -84,7 +84,7 @@
#endif
#ifdef CONFIG_DEBUG_LCD
# define lcddbg(format, ...) vdbg(format, ##__VA_ARGS__)
# define lcddbg(format, ...) info(format, ##__VA_ARGS__)
#else
# define lcddbg(x...)
#endif
+5 -5
View File
@@ -63,10 +63,10 @@
#ifdef CONFIG_DEBUG_LEDS
# define leddbg lldbg
# define ledvdbg llvdbg
# define ledinfo llinfo
#else
# define leddbg(x...)
# define ledvdbg(x...)
# define ledinfo(x...)
#endif
/****************************************************************************
@@ -79,7 +79,7 @@
static inline void set_led(bool v)
{
ledvdbg("Turn LED %s\n", v? "on":"off");
ledinfo("Turn LED %s\n", v? "on":"off");
stm32_gpiowrite(GPIO_LED, v);
}
@@ -105,7 +105,7 @@ void board_autoled_initialize(void)
void board_autoled_on(int led)
{
ledvdbg("board_autoled_on(%d)\n", led);
ledinfo("board_autoled_on(%d)\n", led);
switch (led)
{
case LED_STARTED:
@@ -134,7 +134,7 @@ void board_autoled_on(int led)
void board_autoled_off(int led)
{
ledvdbg("board_autoled_off(%d)\n", led);
ledinfo("board_autoled_off(%d)\n", led);
switch (led)
{
+3 -3
View File
@@ -69,13 +69,13 @@
#ifdef CONFIG_DEBUG_SPI
# define spidbg lldbg
# ifdef CONFIG_DEBUG_INFO
# define spivdbg lldbg
# define spiinfo lldbg
# else
# define spivdbg(x...)
# define spiinfo(x...)
# endif
#else
# define spidbg(x...)
# define spivdbg(x...)
# define spiinfo(x...)
#endif
/****************************************************************************