diff options
-rw-r--r-- | drivers/net/ethoc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethoc.c b/drivers/net/ethoc.c index db519a81e53a..5bb6bb74c40e 100644 --- a/drivers/net/ethoc.c +++ b/drivers/net/ethoc.c | |||
@@ -286,7 +286,7 @@ static inline void ethoc_disable_rx_and_tx(struct ethoc *dev) | |||
286 | ethoc_write(dev, MODER, mode); | 286 | ethoc_write(dev, MODER, mode); |
287 | } | 287 | } |
288 | 288 | ||
289 | static int ethoc_init_ring(struct ethoc *dev, void* mem_start) | 289 | static int ethoc_init_ring(struct ethoc *dev, unsigned long mem_start) |
290 | { | 290 | { |
291 | struct ethoc_bd bd; | 291 | struct ethoc_bd bd; |
292 | int i; | 292 | int i; |
@@ -670,7 +670,7 @@ static int ethoc_open(struct net_device *dev) | |||
670 | if (ret) | 670 | if (ret) |
671 | return ret; | 671 | return ret; |
672 | 672 | ||
673 | ethoc_init_ring(priv, (void*)dev->mem_start); | 673 | ethoc_init_ring(priv, dev->mem_start); |
674 | ethoc_reset(priv); | 674 | ethoc_reset(priv); |
675 | 675 | ||
676 | if (netif_queue_stopped(dev)) { | 676 | if (netif_queue_stopped(dev)) { |