Restore some debug output that lost its low-level marking

This commit is contained in:
Gregory Nutt 2016-06-17 07:13:38 -06:00
parent 0d3ecb3ddd
commit 219098c5ac
5 changed files with 17 additions and 17 deletions

View File

@ -966,7 +966,7 @@ static bool sam_checkreg(struct sam_emac_s *priv, bool wr, uint32_t regval,
{
/* Yes... show how many times we did it */
ninfo("...[Repeats %d times]...\n", priv->ntimes);
nllinfo("...[Repeats %d times]...\n", priv->ntimes);
}
/* Save information about the new access */
@ -999,7 +999,7 @@ static uint32_t sam_getreg(struct sam_emac_s *priv, uint16_t offset)
#ifdef CONFIG_SAMV7_EMAC_REGDEBUG
if (sam_checkreg(priv, false, regval, regaddr))
{
ninfo("%08x->%08x\n", regaddr, regval);
nllinfo("%08x->%08x\n", regaddr, regval);
}
#endif
@ -1023,7 +1023,7 @@ static void sam_putreg(struct sam_emac_s *priv, uint16_t offset,
#ifdef CONFIG_SAMV7_EMAC_REGDEBUG
if (sam_checkreg(priv, true, regval, regaddr))
{
ninfo("%08x<-%08x\n", regaddr, regval);
nllinfo("%08x<-%08x\n", regaddr, regval);
}
#endif

View File

@ -657,7 +657,7 @@ static bool sam_checkreg(struct sam_dev_s *priv, bool wr, uint32_t value,
{
/* Yes... show how many times we did it */
mcinfo("...[Repeats %d times]...\n", priv->ntimes);
mcllinfo("...[Repeats %d times]...\n", priv->ntimes);
}
/* Save information about the new access */
@ -690,7 +690,7 @@ static inline uint32_t sam_getreg(struct sam_dev_s *priv, unsigned int offset)
#ifdef CONFIG_SAMV7_HSMCI_REGDEBUG
if (sam_checkreg(priv, false, value, address))
{
mcinfo("%08x->%08x\n", address, value);
mcllinfo("%08x->%08x\n", address, value);
}
#endif
@ -713,7 +713,7 @@ static inline void sam_putreg(struct sam_dev_s *priv, uint32_t value,
#ifdef CONFIG_SAMV7_HSMCI_REGDEBUG
if (sam_checkreg(priv, true, value, address))
{
mcinfo("%08x<-%08x\n", address, value);
mcllinfo("%08x<-%08x\n", address, value);
}
#endif

View File

@ -794,7 +794,7 @@
#endif
#ifdef CONFIG_SAMV7_MCAN_REGDEBUG
# define reginfo caninfo
# define reginfo canllinfo
#else
# define reginfo(x...)
#endif
@ -1195,7 +1195,7 @@ static uint32_t mcan_getreg(FAR struct sam_mcan_s *priv, int offset)
{
if (priv->count == 4)
{
caninfo("...\n");
canllinfo("...\n");
}
return regval;
@ -1212,7 +1212,7 @@ static uint32_t mcan_getreg(FAR struct sam_mcan_s *priv, int offset)
{
/* Yes.. then show how many times the value repeated */
caninfo("[repeats %d more times]\n", priv->count - 3);
canllinfo("[repeats %d more times]\n", priv->count - 3);
}
/* Save the new address, value, and count */
@ -1224,7 +1224,7 @@ static uint32_t mcan_getreg(FAR struct sam_mcan_s *priv, int offset)
/* Show the register value read */
caninfo("%08x->%08x\n", regaddr, regval);
canllinfo("%08x->%08x\n", regaddr, regval);
return regval;
}
@ -1261,7 +1261,7 @@ static void mcan_putreg(FAR struct sam_mcan_s *priv, int offset, uint32_t regval
/* Show the register value being written */
caninfo("%08x<-%08x\n", regaddr, regval);
canllinfo("%08x<-%08x\n", regaddr, regval);
/* Write the value */

View File

@ -378,7 +378,7 @@ static bool qspi_checkreg(struct sam_qspidev_s *priv, bool wr, uint32_t value,
{
/* Yes... show how many times we did it */
spiinfo("...[Repeats %d times]...\n", priv->ntimes);
spillinfo("...[Repeats %d times]...\n", priv->ntimes);
}
/* Save information about the new access */
@ -412,7 +412,7 @@ static inline uint32_t qspi_getreg(struct sam_qspidev_s *priv,
#ifdef CONFIG_SAMV7_QSPI_REGDEBUG
if (qspi_checkreg(priv, false, value, address))
{
spiinfo("%08x->%08x\n", address, value);
spillinfo("%08x->%08x\n", address, value);
}
#endif
@ -435,7 +435,7 @@ static inline void qspi_putreg(struct sam_qspidev_s *priv, uint32_t value,
#ifdef CONFIG_SAMV7_QSPI_REGDEBUG
if (qspi_checkreg(priv, true, value, address))
{
spiinfo("%08x<-%08x\n", address, value);
spillinfo("%08x<-%08x\n", address, value);
}
#endif

View File

@ -190,7 +190,7 @@ static uint32_t sam_getreg(uintptr_t regaddr)
{
if (count == 4)
{
wdinfo("...\n");
wdllinfo("...\n");
}
return regval;
@ -207,7 +207,7 @@ static uint32_t sam_getreg(uintptr_t regaddr)
{
/* Yes.. then show how many times the value repeated */
wdinfo("[repeats %d more times]\n", count-3);
wdllinfo("[repeats %d more times]\n", count-3);
}
/* Save the new address, value, and count */
@ -219,7 +219,7 @@ static uint32_t sam_getreg(uintptr_t regaddr)
/* Show the register value read */
wdinfo("%08x->%048\n", regaddr, regval);
wdllinfo("%08x->%048\n", regaddr, regval);
return regval;
}
#endif