Networking: Remove the HSEC argument from devif_timer.

This commit is contained in:
Gregory Nutt
2016-02-03 12:12:41 -06:00
parent ff1e057364
commit dea24c503a
23 changed files with 123 additions and 165 deletions
+1 -2
View File
@@ -96,7 +96,6 @@
*/
#define TUN_WDDELAY (1*CLK_TCK)
#define TUN_POLLHSEC (1*2)
/****************************************************************************
* Private Types
@@ -533,7 +532,7 @@ static void tun_poll_process(FAR struct tun_device_s *priv)
/* If so, poll uIP for new XMIT data. */
priv->dev.d_buf = priv->read_buf;
(void)devif_timer(&priv->dev, tun_txpoll, TUN_POLLHSEC);
(void)devif_timer(&priv->dev, tun_txpoll);
}
/* Setup the watchdog poll timer again */