Commit 67c4ded5 authored by Denis Pithon's avatar Denis Pithon Committed by Greg Kroah-Hartman
Browse files

staging/wlan-ng: update function header comment



Header comment of p80211netdev_rx_bh() does not match function
prototype. Fixed.

Signed-off-by: default avatarDenis Pithon <denis.pithon@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8cf22fda
Loading
Loading
Loading
Loading
+5 −13
Original line number Diff line number Diff line
@@ -243,19 +243,11 @@ void p80211netdev_rx(wlandevice_t *wlandev, struct sk_buff *skb)
	tasklet_schedule(&wlandev->rx_bh);
}

/*----------------------------------------------------------------
* p80211netdev_rx_bh
*
* Deferred processing of all received frames.
/**
 * p80211netdev_rx_bh - deferred processing of all received frames
 *
* Arguments:
*	wlandev		WLAN network device structure
*	skb		skbuff containing a full 802.11 frame.
* Returns:
*	nothing
* Side effects:
*
----------------------------------------------------------------*/
 * @arg: pointer to WLAN network device structure (cast to unsigned long)
 */
static void p80211netdev_rx_bh(unsigned long arg)
{
	wlandevice_t *wlandev = (wlandevice_t *) arg;