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
+3 -3
View File
@@ -55,7 +55,7 @@
****************************************************************************/
/****************************************************************************
* Name: dbg, lldbg, vdbg
* Name: dbg, lldbg, info
*
* Description:
* If the cross-compiler's pre-processor does not support variable
@@ -91,7 +91,7 @@ int lldbg(const char *format, ...)
#endif
#ifdef CONFIG_DEBUG_INFO
int vdbg(const char *format, ...)
int info(const char *format, ...)
{
va_list ap;
int ret;
@@ -104,7 +104,7 @@ int vdbg(const char *format, ...)
}
#ifdef CONFIG_ARCH_LOWPUTC
int llvdbg(const char *format, ...)
int llinfo(const char *format, ...)
{
va_list ap;
int ret;
+2 -2
View File
@@ -93,10 +93,10 @@
#ifdef CONFIG_DEBUG_LCD
# define lcddbg dbg
# define lcdvdbg vdbg
# define lcdinfo info
#else
# define lcddbg(x...)
# define lcdvdbg(x...)
# define lcdinfo(x...)
#endif
/****************************************************************************