diff options
Diffstat (limited to 'drivers/net/ucc_geth.c')
-rw-r--r-- | drivers/net/ucc_geth.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/ucc_geth.c b/drivers/net/ucc_geth.c index d00e7d41f6a5..bec413ba9bca 100644 --- a/drivers/net/ucc_geth.c +++ b/drivers/net/ucc_geth.c | |||
@@ -63,7 +63,7 @@ | |||
63 | #define UGETH_MSG_DEFAULT (NETIF_MSG_IFUP << 1 ) - 1 | 63 | #define UGETH_MSG_DEFAULT (NETIF_MSG_IFUP << 1 ) - 1 |
64 | 64 | ||
65 | void uec_set_ethtool_ops(struct net_device *netdev); | 65 | void uec_set_ethtool_ops(struct net_device *netdev); |
66 | 66 | ||
67 | static DEFINE_SPINLOCK(ugeth_lock); | 67 | static DEFINE_SPINLOCK(ugeth_lock); |
68 | 68 | ||
69 | static struct { | 69 | static struct { |
@@ -3454,9 +3454,12 @@ static int ucc_geth_rx(struct ucc_geth_private *ugeth, u8 rxQ, int rx_work_limit | |||
3454 | u16 length, howmany = 0; | 3454 | u16 length, howmany = 0; |
3455 | u32 bd_status; | 3455 | u32 bd_status; |
3456 | u8 *bdBuffer; | 3456 | u8 *bdBuffer; |
3457 | struct net_device * dev; | ||
3457 | 3458 | ||
3458 | ugeth_vdbg("%s: IN", __FUNCTION__); | 3459 | ugeth_vdbg("%s: IN", __FUNCTION__); |
3459 | 3460 | ||
3461 | dev = ugeth->dev; | ||
3462 | |||
3460 | /* collect received buffers */ | 3463 | /* collect received buffers */ |
3461 | bd = ugeth->rxBd[rxQ]; | 3464 | bd = ugeth->rxBd[rxQ]; |
3462 | 3465 | ||