Hi all, while browsing through 'warning: variable ‘...’ set but not used' warnings, I found the following code in drivers/net/wireless/rtlwifi/usb.c:_rtl_rx_pre_process(). while (!skb_queue_empty(&rx_queue)) { _skb = skb_dequeue(&rx_queue); _rtl_usb_rx_process_agg(hw, skb); ieee80211_rx_irqsafe(hw, skb); } Question: Should the parameter to _rtl_usb_rx_process_agg() and ieee80211_rx_irqsafe() be '_skb' instead of 'skb' ? Thanks, Guenter -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html