diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-11-29 16:15:17 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-12-02 00:16:36 -0500 |
commit | bca79eb7e7a1855947864952fcd878a5ae7b5c92 (patch) | |
tree | bf89d47fee4226ef2520cba7624afa3db61328fb /drivers/net/sundance.c | |
parent | cb8011ad53e0855ef088e0e5a4bcb98fa90c70b6 (diff) |
[PATCH] sundance: use NULL for pointer
Use NULL instead of 0 for pointers (cures sparse warnings).
drivers/net/sundance.c:1106:16: warning: Using plain integer as NULL pointer
drivers/net/sundance.c:1652:16: warning: Using plain integer as NULL pointer
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/sundance.c')
-rw-r--r-- | drivers/net/sundance.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sundance.c b/drivers/net/sundance.c index 02679e688c4c..c06ecc8002b9 100644 --- a/drivers/net/sundance.c +++ b/drivers/net/sundance.c | |||
@@ -1102,7 +1102,7 @@ reset_tx (struct net_device *dev) | |||
1102 | np->cur_tx = np->dirty_tx = 0; | 1102 | np->cur_tx = np->dirty_tx = 0; |
1103 | np->cur_task = 0; | 1103 | np->cur_task = 0; |
1104 | 1104 | ||
1105 | np->last_tx = 0; | 1105 | np->last_tx = NULL; |
1106 | iowrite8(127, ioaddr + TxDMAPollPeriod); | 1106 | iowrite8(127, ioaddr + TxDMAPollPeriod); |
1107 | 1107 | ||
1108 | iowrite16 (StatsEnable | RxEnable | TxEnable, ioaddr + MACCtrl1); | 1108 | iowrite16 (StatsEnable | RxEnable | TxEnable, ioaddr + MACCtrl1); |
@@ -1648,7 +1648,7 @@ static int netdev_close(struct net_device *dev) | |||
1648 | np->cur_tx = 0; | 1648 | np->cur_tx = 0; |
1649 | np->dirty_tx = 0; | 1649 | np->dirty_tx = 0; |
1650 | np->cur_task = 0; | 1650 | np->cur_task = 0; |
1651 | np->last_tx = 0; | 1651 | np->last_tx = NULL; |
1652 | 1652 | ||
1653 | netif_stop_queue(dev); | 1653 | netif_stop_queue(dev); |
1654 | 1654 | ||