mirror of
https://github.com/apache/nuttx.git
synced 2026-08-22 22:18:25 +00:00
Rename uip_input to devif_input
This commit is contained in:
parent
c5f2ec1637
commit
ade8807a61
13 changed files with 13 additions and 13 deletions
|
|
@ -1239,7 +1239,7 @@ static void c5471_receive(struct c5471_driver_s *c5471)
|
|||
#endif
|
||||
{
|
||||
arp_ipin(dev);
|
||||
uip_input(dev);
|
||||
devif_input(dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
|
|
@ -523,7 +523,7 @@ static void kinetis_receive(FAR struct kinetis_driver_s *priv)
|
|||
#endif
|
||||
{
|
||||
arp_ipin(&priv->dev);
|
||||
uip_input(&priv->dev);
|
||||
devif_input(&priv->dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
|
|
@ -868,7 +868,7 @@ static void lpc17_rxdone(struct lpc17_driver_s *priv)
|
|||
|
||||
EMAC_STAT(priv, rx_ip);
|
||||
arp_ipin(&priv->lp_dev);
|
||||
uip_input(&priv->lp_dev);
|
||||
devif_input(&priv->lp_dev);
|
||||
|
||||
/* If the above function invocation resulted in data that
|
||||
* should be sent out on the network, the field d_len will
|
||||
|
|
|
|||
|
|
@ -1140,7 +1140,7 @@ static void sam_receive(struct sam_emac_s *priv)
|
|||
/* Handle ARP on input then give the IP packet to uIP */
|
||||
|
||||
arp_ipin(&priv->dev);
|
||||
uip_input(&priv->dev);
|
||||
devif_input(&priv->dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
|
|
@ -1180,7 +1180,7 @@ static void sam_receive(struct sam_emac_s *priv)
|
|||
/* Handle ARP on input then give the IP packet to uIP */
|
||||
|
||||
arp_ipin(&priv->dev);
|
||||
uip_input(&priv->dev);
|
||||
devif_input(&priv->dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
|
|
@ -1495,7 +1495,7 @@ static void sam_receive(struct sam_emac_s *priv)
|
|||
/* Handle ARP on input then give the IP packet to uIP */
|
||||
|
||||
arp_ipin(&priv->dev);
|
||||
uip_input(&priv->dev);
|
||||
devif_input(&priv->dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
|
|
@ -1110,7 +1110,7 @@ static void sam_receive(struct sam_gmac_s *priv)
|
|||
/* Handle ARP on input then give the IP packet to uIP */
|
||||
|
||||
arp_ipin(&priv->dev);
|
||||
uip_input(&priv->dev);
|
||||
devif_input(&priv->dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
|
|
@ -1623,7 +1623,7 @@ static void stm32_receive(FAR struct stm32_ethmac_s *priv)
|
|||
/* Handle ARP on input then give the IP packet to uIP */
|
||||
|
||||
arp_ipin(&priv->dev);
|
||||
uip_input(&priv->dev);
|
||||
devif_input(&priv->dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
|
|
@ -767,7 +767,7 @@ static void tiva_receive(struct tiva_driver_s *priv)
|
|||
EMAC_STAT(priv, rx_ip);
|
||||
|
||||
arp_ipin(&priv->ld_dev);
|
||||
uip_input(&priv->ld_dev);
|
||||
devif_input(&priv->ld_dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
|
|
@ -265,7 +265,7 @@ static void emac_receive(FAR struct emac_driver_s *priv)
|
|||
#endif
|
||||
{
|
||||
arp_ipin(&priv->d_dev);
|
||||
uip_input(&priv->d_dev);
|
||||
devif_input(&priv->d_dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
|
|
@ -1436,7 +1436,7 @@ static void pic32mx_rxdone(struct pic32mx_driver_s *priv)
|
|||
|
||||
EMAC_STAT(priv, rx_ip);
|
||||
arp_ipin(&priv->pd_dev);
|
||||
uip_input(&priv->pd_dev);
|
||||
devif_input(&priv->pd_dev);
|
||||
|
||||
/* If the above function invocation resulted in data that
|
||||
* should be sent out on the network, the field d_len will
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ void uipdriver_loop(void)
|
|||
#endif
|
||||
{
|
||||
arp_ipin(&g_sim_dev);
|
||||
uip_input(&g_sim_dev);
|
||||
devif_input(&g_sim_dev);
|
||||
|
||||
/* If the above function invocation resulted in data that
|
||||
* should be sent out on the network, the global variable
|
||||
|
|
|
|||
|
|
@ -1275,7 +1275,7 @@ static int ez80emac_receive(struct ez80emac_driver_s *priv)
|
|||
EMAC_STAT(priv, rx_ip);
|
||||
|
||||
arp_ipin(&priv->dev);
|
||||
uip_input(&priv->dev);
|
||||
devif_input(&priv->dev);
|
||||
|
||||
/* If the above function invocation resulted in data that should be
|
||||
* sent out on the network, the field d_len will set to a value > 0.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue