OSDN Git Service

staging: ks7010: fix remaining long line warnings in ks7010_sdio source
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Fri, 6 Apr 2018 12:37:49 +0000 (14:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Apr 2018 12:27:38 +0000 (14:27 +0200)
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>
drivers/staging/ks7010/ks7010_sdio.c

index 2f709ae..3ad2f73 100644 (file)
@@ -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 {