Rename many functions in net/devif from uip_* to devif_*

This commit is contained in:
Gregory Nutt
2014-06-28 18:36:09 -06:00
parent 5790c94ba3
commit 8e706eb4ff
29 changed files with 94 additions and 92 deletions
+2 -2
View File
@@ -81,7 +81,7 @@
****************************************************************************/
/****************************************************************************
* Name: uip_send
* Name: devif_send
*
* Description:
* Called from socket logic in response to a xmit or poll request from the
@@ -93,7 +93,7 @@
*
****************************************************************************/
void uip_send(struct net_driver_s *dev, const void *buf, int len)
void devif_send(struct net_driver_s *dev, const void *buf, int len)
{
DEBUGASSERT(dev && len > 0 && len < CONFIG_NET_BUFSIZE);