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

Commit 40791942 authored by Emmanuel Grumbach's avatar Emmanuel Grumbach Committed by Johannes Berg
Browse files

mac80211: simplify code in ieee80211_prepare_and_rx_handle



No need to assign the return value of prepare_for_handlers
to a variable if the only usage is to test it.

Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 87ee475e
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -3191,13 +3191,11 @@ static bool ieee80211_prepare_and_rx_handle(struct ieee80211_rx_data *rx,
	struct ieee80211_sub_if_data *sdata = rx->sdata;
	struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
	struct ieee80211_hdr *hdr = (void *)skb->data;
	int prepares;

	rx->skb = skb;
	status->rx_flags |= IEEE80211_RX_RA_MATCH;
	prepares = prepare_for_handlers(rx, hdr);

	if (!prepares)
	if (!prepare_for_handlers(rx, hdr))
		return false;

	if (!consume) {