mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 12:59:33 -04:00
staging: ks7010: fix remaining long line warnings in ks7010_sdio source
This commit fixes remaining checkpatch warnings because of the use of lines longer than 80 characters in ks7010_sdio source file. After this clean, this file has no remaining warnings around. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e4844d6f87
commit
7dd51ea1f6
@@ -305,7 +305,8 @@ static void tx_device_task(struct ks_wlan_private *priv)
|
||||
if (priv->dev_state >= DEVICE_STATE_BOOT) {
|
||||
ret = write_to_device(priv, sp->sendp, sp->size);
|
||||
if (ret) {
|
||||
netdev_err(priv->net_dev, "write_to_device error !!(%d)\n", ret);
|
||||
netdev_err(priv->net_dev,
|
||||
"write_to_device error !!(%d)\n", ret);
|
||||
queue_delayed_work(priv->wq, &priv->rw_dwork, 1);
|
||||
return;
|
||||
}
|
||||
@@ -539,7 +540,8 @@ static void ks_sdio_interrupt(struct sdio_func *func)
|
||||
if (atomic_read(&priv->psstatus.status) == PS_SNOOZE) {
|
||||
if (cnt_txqbody(priv)) {
|
||||
ks_wlan_hw_wakeup_request(priv);
|
||||
queue_delayed_work(priv->wq, &priv->rw_dwork, 1);
|
||||
queue_delayed_work(priv->wq,
|
||||
&priv->rw_dwork, 1);
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user