staging: ks7010: fixed a coding style issue
authorXiangyang Zhang <xyz.sun.ok@gmail.com>
Wed, 22 Mar 2017 08:47:13 +0000 (16:47 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Mar 2017 13:27:23 +0000 (14:27 +0100)
Fixed checkpatch.pl CHECK: Logical continuations should be on the
previous line

Signed-off-by: Xiangyang Zhang <xyz.sun.ok@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks7010_sdio.c

index 8829989..b16618b 100644 (file)
@@ -313,8 +313,8 @@ static void tx_device_task(void *dev)
        int rc = 0;
 
        DPRINTK(4, "\n");
-       if (cnt_txqbody(priv) > 0
-           && atomic_read(&priv->psstatus.status) != PS_SNOOZE) {
+       if (cnt_txqbody(priv) > 0 &&
+           atomic_read(&priv->psstatus.status) != PS_SNOOZE) {
                sp = &priv->tx_dev.tx_dev_buff[priv->tx_dev.qhead];
                if (priv->dev_state >= DEVICE_STATE_BOOT) {
                        rc = write_to_device(priv, sp->sendp, sp->size);
@@ -558,8 +558,8 @@ static void ks_sdio_interrupt(struct sdio_func *func)
                /* read (General Communication B register) */
                /* bit5 -> Write Status Idle */
                /* bit2 -> Read Status Busy  */
-               if (status & INT_GCR_B
-                   || atomic_read(&priv->psstatus.status) == PS_SNOOZE) {
+               if (status & INT_GCR_B ||
+                   atomic_read(&priv->psstatus.status) == PS_SNOOZE) {
                        retval =
                            ks7010_sdio_read(priv, GCR_B, &rw_data,
                                             sizeof(rw_data));