Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 26827c83 authored by Martin Kepplinger's avatar Martin Kepplinger Committed by Greg Kroah-Hartman
Browse files

staging: rtl8187se: fix pointer and return statement's syntax



Use the common kernel coding style.

Signed-off-by: default avatarMartin Kepplinger <martink@posteo.de>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d1a91071
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -285,7 +285,7 @@ static int ieee80211_classify(struct sk_buff *skb,

	if (!network->QoS_Enable) {
		skb->priority = 0;
		return(wme_UP);
		return wme_UP;
	}

	if (eh->ether_type == __constant_htons(ETHERTYPE_IP)) {
@@ -304,7 +304,7 @@ static int ieee80211_classify(struct sk_buff *skb,
	}

	skb->priority = wme_UP;
	return(wme_UP);
	return wme_UP;
}

/* SKBs are added to the ieee->tx_queue. */