diff options
author | hayeswang | 2014-11-12 10:05:03 +0800 |
---|---|---|
committer | David S. Miller | 2014-11-12 14:49:08 -0500 |
commit | 0c29dde43c36c28d192709a70c2689ed7549dd52 (patch) | |
tree | 8de7e5d5d0ba27bfcb0721c27a226d87d55761e0 | |
parent | d3f15dbd42d6d22237104df5a23151332c1b7585 (diff) |
r8152: remove the duplicate init for the list of rx_done
The INIT_LIST_HEAD(&tp->rx_done) would be done in rtl_start_rx(),
so remove the unnecessary one in alloc_all_mem().
Signed-off-by: Hayes Wang <hayeswang@realtek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/usb/r8152.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c index 66b139a8b6ca..a3004675e659 100644 --- a/drivers/net/usb/r8152.c +++ b/drivers/net/usb/r8152.c @@ -1255,7 +1255,6 @@ static int alloc_all_mem(struct r8152 *tp) spin_lock_init(&tp->rx_lock); spin_lock_init(&tp->tx_lock); - INIT_LIST_HEAD(&tp->rx_done); INIT_LIST_HEAD(&tp->tx_free); skb_queue_head_init(&tp->tx_queue); |