Commit 640a4db7 authored by Jules Irenge's avatar Jules Irenge Committed by Greg Kroah-Hartman
Browse files

staging: wfx: fix warnings of logical continuation



Fix check warnings of logical continuations
should be on the previous line.
Issue detected by checkpatch tool.

Signed-off-by: default avatarJules Irenge <jbi.octave@gmail.com>
Link: https://lore.kernel.org/r/20191019140719.2542-4-jbi.octave@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1dc3d53e
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -163,13 +163,13 @@ void wfx_rx_cb(struct wfx_vif *wvif, struct hif_ind_rx *arg,
	}

	/* Filter block ACK negotiation: fully controlled by firmware */
	if (ieee80211_is_action(frame->frame_control)
	    && arg->rx_flags.match_uc_addr
	    && mgmt->u.action.category == WLAN_CATEGORY_BACK)
	if (ieee80211_is_action(frame->frame_control) &&
	    arg->rx_flags.match_uc_addr &&
	    mgmt->u.action.category == WLAN_CATEGORY_BACK)
		goto drop;
	if (ieee80211_is_beacon(frame->frame_control)
	    && !arg->status && wvif->vif
	    && ether_addr_equal(ieee80211_get_SA(frame),
	if (ieee80211_is_beacon(frame->frame_control) &&
	    !arg->status && wvif->vif &&
	    ether_addr_equal(ieee80211_get_SA(frame),
			     wvif->vif->bss_conf.bssid)) {
		const u8 *tim_ie;
		u8 *ies = mgmt->u.beacon.variable;