mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +08:00
Replace all occurrences of vdbg with vinfo
This commit is contained in:
@@ -244,7 +244,7 @@ static inline void lpc31_initsrc(void)
|
||||
char devname[16];
|
||||
#endif
|
||||
|
||||
pgllvdbg("Initializing %s\n", CONFIG_PAGING_BINPATH);
|
||||
pgllinfo("Initializing %s\n", CONFIG_PAGING_BINPATH);
|
||||
|
||||
/* No, do we need to mount an SD device? */
|
||||
|
||||
@@ -300,7 +300,7 @@ static inline void lpc31_initsrc(void)
|
||||
{
|
||||
/* No... the initialize now */
|
||||
|
||||
pgllvdbg("Initializing\n");
|
||||
pgllinfo("Initializing\n");
|
||||
|
||||
/* First get an instance of the SPI device interface */
|
||||
|
||||
@@ -327,7 +327,7 @@ static inline void lpc31_initsrc(void)
|
||||
ret = MTD_IOCTL(g_pgsrc.mtd, MTDIOC_GEOMETRY, (unsigned long)&g_pgsrc.geo);
|
||||
DEBUGASSERT(ret >= 0);
|
||||
capacity = g_pgsrc.geo.erasesize*g_pgsrc.geo.neraseblocks;
|
||||
pgllvdbg("capacity: %d\n", capacity);
|
||||
pgllinfo("capacity: %d\n", capacity);
|
||||
DEBUGASSERT(capacity >= (CONFIG_EA3131_PAGING_BINOFFSET + PG_TEXT_VSIZE));
|
||||
#endif
|
||||
|
||||
|
||||
@@ -61,10 +61,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
|
||||
|
||||
/****************************************************************************
|
||||
|
||||
@@ -67,14 +67,14 @@
|
||||
#ifdef SPI_DEBUG
|
||||
# define spidbg lldbg
|
||||
# ifdef SPI_VERBOSE
|
||||
# define spivdbg lldbg
|
||||
# define spiinfo lldbg
|
||||
# else
|
||||
# define spivdbg(x...)
|
||||
# define spiinfo(x...)
|
||||
# endif
|
||||
#else
|
||||
# undef SPI_VERBOSE
|
||||
# define spidbg(x...)
|
||||
# define spivdbg(x...)
|
||||
# define spiinfo(x...)
|
||||
#endif
|
||||
|
||||
/************************************************************************************
|
||||
|
||||
@@ -104,7 +104,7 @@ static int ehci_waiter(int argc, char *argv[])
|
||||
{
|
||||
FAR struct usbhost_hubport_s *hport;
|
||||
|
||||
uvdbg("ehci_waiter: Running\n");
|
||||
uinfo("ehci_waiter: Running\n");
|
||||
for (;;)
|
||||
{
|
||||
/* Wait for the device to change state */
|
||||
@@ -262,7 +262,7 @@ int lpc31_usbhost_initialize(void)
|
||||
|
||||
void lpc31_usbhost_vbusdrive(int rhport, bool enable)
|
||||
{
|
||||
uvdbg("RHPort%d: enable=%d\n", rhport+1, enable);
|
||||
uinfo("RHPort%d: enable=%d\n", rhport+1, enable);
|
||||
|
||||
/* The LPC3131 has only a single root hub port */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user