ath6kl: logical continuations should be on the previous line
All found by checkpatch: ath6kl/wmi.c:1036: CHECK: Logical continuations should be on the previous line Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
@@ -826,8 +826,8 @@ static int ath6kl_wmi_connect_event_rx(struct wmi *wmi, u8 *datap, int len,
|
||||
if (pie[1] > 3 && pie[2] == 0x00 && pie[3] == 0x50 &&
|
||||
pie[4] == 0xf2 && pie[5] == WMM_OUI_TYPE) {
|
||||
/* WMM OUT (00:50:F2) */
|
||||
if (pie[1] > 5
|
||||
&& pie[6] == WMM_PARAM_OUI_SUBTYPE)
|
||||
if (pie[1] > 5 &&
|
||||
pie[6] == WMM_PARAM_OUI_SUBTYPE)
|
||||
wmi->is_wmm_enabled = true;
|
||||
}
|
||||
break;
|
||||
@@ -1032,8 +1032,9 @@ static int ath6kl_wmi_bssinfo_event_rx(struct wmi *wmi, u8 *datap, int len,
|
||||
if (len < 8 + 2 + 2)
|
||||
return -EINVAL;
|
||||
|
||||
if (bih->frame_type == BEACON_FTYPE && test_bit(CONNECTED, &vif->flags)
|
||||
&& memcmp(bih->bssid, vif->bssid, ETH_ALEN) == 0) {
|
||||
if (bih->frame_type == BEACON_FTYPE &&
|
||||
test_bit(CONNECTED, &vif->flags) &&
|
||||
memcmp(bih->bssid, vif->bssid, ETH_ALEN) == 0) {
|
||||
const u8 *tim;
|
||||
tim = cfg80211_find_ie(WLAN_EID_TIM, buf + 8 + 2 + 2,
|
||||
len - 8 - 2 - 2);
|
||||
|
Reference in New Issue
Block a user