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
+2 -2
View File
@@ -107,7 +107,7 @@ void arp_arpin(FAR struct net_driver_s *dev)
switch (arp->ah_opcode)
{
case HTONS(ARP_REQUEST):
nllvdbg("ARP request for IP %04lx\n", (long)ipaddr);
nllinfo("ARP request for IP %04lx\n", (long)ipaddr);
/* ARP request. If it asked for our address, we send out a reply. */
@@ -139,7 +139,7 @@ void arp_arpin(FAR struct net_driver_s *dev)
break;
case HTONS(ARP_REPLY):
nllvdbg("ARP reply for IP %04lx\n", (long)ipaddr);
nllinfo("ARP reply for IP %04lx\n", (long)ipaddr);
/* ARP reply. We insert or update the ARP table if it was meant
* for us.
+1 -1
View File
@@ -231,7 +231,7 @@ void arp_out(FAR struct net_driver_s *dev)
tabptr = arp_find(ipaddr);
if (!tabptr)
{
nllvdbg("ARP request for IP %08lx\n", (unsigned long)ipaddr);
nllinfo("ARP request for IP %08lx\n", (unsigned long)ipaddr);
/* The destination address was not in our ARP table, so we
* overwrite the IP packet with an ARP request.
+1 -1
View File
@@ -102,7 +102,7 @@ static uint16_t arp_send_interrupt(FAR struct net_driver_s *dev,
{
FAR struct arp_send_s *state = (FAR struct arp_send_s *)priv;
nllvdbg("flags: %04x sent: %d\n", flags, state->snd_sent);
nllinfo("flags: %04x sent: %d\n", flags, state->snd_sent);
if (state)
{