summaryrefslogtreecommitdiff
path: root/nuttx/drivers/net/dm90x0.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-01 18:41:08 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-01 18:41:08 -0600
commit7668388eb7fd1960efaa409e3191cc7b7d5cb014 (patch)
tree2120b5fb187fca821bd3bce6f2ae6cd8d70d21bc /nuttx/drivers/net/dm90x0.c
parentf5bff25374fb33e20388571dada417c7e8ed0ea5 (diff)
downloadpx4-nuttx-7668388eb7fd1960efaa409e3191cc7b7d5cb014.tar.gz
px4-nuttx-7668388eb7fd1960efaa409e3191cc7b7d5cb014.tar.bz2
px4-nuttx-7668388eb7fd1960efaa409e3191cc7b7d5cb014.zip
NET: Rename XYZ_uiptxpoll to just XYZ_txpoll
Diffstat (limited to 'nuttx/drivers/net/dm90x0.c')
-rw-r--r--nuttx/drivers/net/dm90x0.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/nuttx/drivers/net/dm90x0.c b/nuttx/drivers/net/dm90x0.c
index 6127defa7..f3c4090a1 100644
--- a/nuttx/drivers/net/dm90x0.c
+++ b/nuttx/drivers/net/dm90x0.c
@@ -376,7 +376,7 @@ static bool dm9x_rxchecksumready(uint8_t);
/* Common TX logic */
static int dm9x_transmit(struct dm9x_driver_s *dm9x);
-static int dm9x_uiptxpoll(struct net_driver_s *dev);
+static int dm9x_txpoll(struct net_driver_s *dev);
/* Interrupt handling */
@@ -819,7 +819,7 @@ static int dm9x_transmit(struct dm9x_driver_s *dm9x)
}
/****************************************************************************
- * Function: dm9x_uiptxpoll
+ * Function: dm9x_txpoll
*
* Description:
* The transmitter is available, check if uIP has any outgoing packets ready
@@ -839,7 +839,7 @@ static int dm9x_transmit(struct dm9x_driver_s *dm9x)
*
****************************************************************************/
-static int dm9x_uiptxpoll(struct net_driver_s *dev)
+static int dm9x_txpoll(struct net_driver_s *dev)
{
struct dm9x_driver_s *dm9x = (struct dm9x_driver_s *)dev->d_private;
@@ -1086,7 +1086,7 @@ static void dm9x_txdone(struct dm9x_driver_s *dm9x)
/* Then poll uIP for new XMIT data */
- (void)devif_poll(&dm9x->dm_dev, dm9x_uiptxpoll);
+ (void)devif_poll(&dm9x->dm_dev, dm9x_txpoll);
}
/****************************************************************************
@@ -1249,7 +1249,7 @@ static void dm9x_txtimeout(int argc, uint32_t arg, ...)
/* Then poll uIP for new XMIT data */
- (void)devif_poll(&dm9x->dm_dev, dm9x_uiptxpoll);
+ (void)devif_poll(&dm9x->dm_dev, dm9x_txpoll);
}
/****************************************************************************
@@ -1291,7 +1291,7 @@ static void dm9x_polltimer(int argc, uint32_t arg, ...)
{
/* If so, update TCP timing states and poll uIP for new XMIT data */
- (void)devif_timer(&dm9x->dm_dev, dm9x_uiptxpoll, DM6X_POLLHSEC);
+ (void)devif_timer(&dm9x->dm_dev, dm9x_txpoll, DM6X_POLLHSEC);
}
/* Setup the watchdog poll timer again */
@@ -1499,7 +1499,7 @@ static int dm9x_txavail(struct net_driver_s *dev)
{
/* If so, then poll uIP for new XMIT data */
- (void)devif_poll(&dm9x->dm_dev, dm9x_uiptxpoll);
+ (void)devif_poll(&dm9x->dm_dev, dm9x_txpoll);
}
}
irqrestore(flags);