staging: vt6655: rearrange lines exceeding 100 columns
authorDeepak R Varma <mh12gx2825@gmail.com>
Fri, 16 Oct 2020 15:44:23 +0000 (21:14 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 26 Oct 2020 05:53:10 +0000 (06:53 +0100)
Rearrange lines that are longer than 100 columns in width. Issue reported
by chckpatch script. Also remove unnecessary pair of braces for single
line instruction post if condition.

Signed-off-by: Deepak R Varma <mh12gx2825@gmail.com>
Link: https://lore.kernel.org/r/20201016154423.GA17210@ubuntu204
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/device_main.c

index 09ab6d6..9c7d70e 100644 (file)
@@ -461,7 +461,10 @@ static bool device_init_rings(struct vnt_private *priv)
                priv->opts.rx_descs0 * sizeof(struct vnt_rx_desc);
 
        priv->tx0_bufs = dma_alloc_coherent(&priv->pcid->dev,
-                                           priv->opts.tx_descs[0] * PKT_BUF_SZ + priv->opts.tx_descs[1] * PKT_BUF_SZ + CB_BEACON_BUF_SIZE + CB_MAX_BUF_SIZE,
+                                           priv->opts.tx_descs[0] * PKT_BUF_SZ +
+                                           priv->opts.tx_descs[1] * PKT_BUF_SZ +
+                                           CB_BEACON_BUF_SIZE +
+                                           CB_MAX_BUF_SIZE,
                                            &priv->tx_bufs_dma0, GFP_ATOMIC);
        if (!priv->tx0_bufs) {
                dev_err(&priv->pcid->dev, "allocate buf dma memory failed\n");
@@ -1075,10 +1078,10 @@ static void vnt_interrupt_process(struct vnt_private *priv)
 
                        if ((priv->op_mode == NL80211_IFTYPE_AP ||
                            priv->op_mode == NL80211_IFTYPE_ADHOC) &&
-                           priv->vif->bss_conf.enable_beacon) {
+                           priv->vif->bss_conf.enable_beacon)
                                MACvOneShotTimer1MicroSec(priv,
-                                                         (priv->vif->bss_conf.beacon_int - MAKE_BEACON_RESERVED) << 10);
-                       }
+                                                         (priv->vif->bss_conf.beacon_int -
+                                                          MAKE_BEACON_RESERVED) << 10);
 
                        /* TODO: adhoc PS mode */
                }