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
+163 -163
View File
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -78,18 +78,18 @@
#ifdef CONFIG_CPP_HAVE_VARARGS
# ifdef CONFIG_DEBUG_SHM
# define shmdbg(format, ...) dbg(format, ##__VA_ARGS__)
# define shmvdbg(format, ...) vdbg(format, ##__VA_ARGS__)
# define shminfo(format, ...) info(format, ##__VA_ARGS__)
# else
# define shmdbg(format, ...) mdbg(format, ##__VA_ARGS__)
# define shmvdbg(format, ...) mvdbg(format, ##__VA_ARGS__)
# define shminfo(format, ...) minfo(format, ##__VA_ARGS__)
# endif
#else
# ifdef CONFIG_DEBUG_SHM
# define shmdbg dbg
# define shmvdbg vdbg
# define shminfo info
# else
# define shmdbg (void)
# define shmvdbg (void)
# define shminfo (void)
# endif
#endif
+4 -4
View File
@@ -77,13 +77,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
/****************************************************************************
@@ -273,7 +273,7 @@ static uint32_t spi_setfrequency(FAR struct spi_bitbang_s *priv, uint32_t freque
static void spi_setmode(FAR struct spi_bitbang_s *priv,
enum spi_mode_e mode)
{
spivdbg("mode=%d\n", mode);
spiinfo("mode=%d\n", mode);
switch (mode)
{
+3 -3
View File
@@ -64,13 +64,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
/****************************************************************************
+4 -4
View File
@@ -93,13 +93,13 @@
#ifdef NRF24L01_DEBUG
# define wdbg(format, ...) dbg(format, ##__VA_ARGS__)
# define wlldbg(format, ...) lldbg(format, ##__VA_ARGS__)
# define wvdbg(format, ...) vdbg(format, ##__VA_ARGS__)
# define wllvdbg(format, ...) llvdbg(format, ##__VA_ARGS__)
# define winfo(format, ...) info(format, ##__VA_ARGS__)
# define wllinfo(format, ...) llinfo(format, ##__VA_ARGS__)
#else
# define wdbg(x...)
# define wlldbg(x...)
# define wvdbg(x...)
# define wllvdbg(x...)
# define winfo(x...)
# define wllinfo(x...)
#endif
/****************************************************************************