staging: ks7010: avoid two long lines in hostif_sme_mode_setup

This commit avoid two checkpatch script complains about
two long lines.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Sergio Paracuellos 2018-05-04 06:16:27 +02:00 committed by Greg Kroah-Hartman
parent 1c800aabfd
commit 2fa68297f0
1 changed files with 4 additions and 2 deletions

View File

@ -1886,9 +1886,11 @@ void hostif_sme_mode_setup(struct ks_wlan_private *priv)
break;
case MODE_INFRASTRUCTURE:
if (!is_valid_ether_addr((u8 *)priv->reg.bssid)) {
hostif_infrastructure_set_request(priv, HIF_INFRA_SET_REQ);
hostif_infrastructure_set_request(priv,
HIF_INFRA_SET_REQ);
} else {
hostif_infrastructure_set_request(priv, HIF_INFRA_SET2_REQ);
hostif_infrastructure_set_request(priv,
HIF_INFRA_SET2_REQ);
netdev_dbg(priv->net_dev,
"Infra bssid = %pM\n", priv->reg.bssid);
}