staging: wilc1000: rearrange line exceeding 80 characters

Moved to the bottom line after && operator for it exceeds 80 character

Signed-off-by: Gokce Kuler <gokcekuler@gmail.com>
Link: https://lore.kernel.org/r/20200316151009.GA7604@siyah2
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Gokce Kuler 2020-03-16 18:10:09 +03:00 committed by Greg Kroah-Hartman
parent d9e709d017
commit 7c280df8fa
1 changed files with 4 additions and 2 deletions

View File

@ -794,8 +794,10 @@ void wilc_wfi_mgmt_rx(struct wilc *wilc, u8 *buff, u32 size)
u16 type = le16_to_cpup((__le16 *)buff); u16 type = le16_to_cpup((__le16 *)buff);
if (vif->priv.p2p_listen_state && if (vif->priv.p2p_listen_state &&
((type == vif->frame_reg[0].type && vif->frame_reg[0].reg) || ((type == vif->frame_reg[0].type &&
(type == vif->frame_reg[1].type && vif->frame_reg[1].reg))) vif->frame_reg[0].reg) ||
(type == vif->frame_reg[1].type &&
vif->frame_reg[1].reg)))
wilc_wfi_p2p_rx(vif, buff, size); wilc_wfi_p2p_rx(vif, buff, size);
if (vif->monitor_flag) if (vif->monitor_flag)