wireless: Remove casts to same type
[deliverable/linux.git] / drivers / net / wireless / brcm80211 / brcmsmac / dma.c
index 11054ae9d4f6e6993ab5483140a1c367f8c670e2..7516639412ec6740389c6eb005414d4ef826830d 100644 (file)
@@ -1433,7 +1433,7 @@ void dma_walk_packets(struct dma_pub *dmah, void (*callback_fnc)
        struct ieee80211_tx_info *tx_info;
 
        while (i != end) {
-               skb = (struct sk_buff *)di->txp[i];
+               skb = di->txp[i];
                if (skb != NULL) {
                        tx_info = (struct ieee80211_tx_info *)skb->cb;
                        (callback_fnc)(tx_info, arg_a);
This page took 0.031027 seconds and 5 git commands to generate.