staging: wfx: fix warnings of alignment should match open parenthesis
authorJules Irenge <jbi.octave@gmail.com>
Sat, 19 Oct 2019 14:07:19 +0000 (15:07 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 26 Oct 2019 18:43:47 +0000 (20:43 +0200)
: Fix warnings of alignment should match open parenthesis.
Issue detected by checkpatch tool.

Signed-off-by: Jules Irenge <jbi.octave@gmail.com>
Link: https://lore.kernel.org/r/20191019140719.2542-6-jbi.octave@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wfx/data_rx.c
drivers/staging/wfx/data_tx.c
drivers/staging/wfx/debug.c

index 52fb0f2..e7fcce8 100644 (file)
@@ -77,7 +77,7 @@ static int wfx_drop_encrypt_data(struct wfx_dev *wdev, struct hif_ind_rx *arg, s
                break;
        default:
                dev_err(wdev->dev, "unknown encryption type %d\n",
-                        arg->rx_flags.encryp);
+                       arg->rx_flags.encryp);
                return -EIO;
        }
 
index a02692f..ea4205a 100644 (file)
@@ -40,7 +40,7 @@ static int wfx_get_hw_rate(struct wfx_dev *wdev,
 /* TX policy cache implementation */
 
 static void wfx_tx_policy_build(struct wfx_vif *wvif, struct tx_policy *policy,
-                           struct ieee80211_tx_rate *rates)
+                               struct ieee80211_tx_rate *rates)
 {
        int i;
        size_t count;
index 761ad9b..0a9ca10 100644 (file)
@@ -141,10 +141,11 @@ static int wfx_rx_stats_show(struct seq_file *seq, void *v)
        mutex_lock(&wdev->rx_stats_lock);
        seq_printf(seq, "Timestamp: %dus\n", st->date);
        seq_printf(seq, "Low power clock: frequency %uHz, external %s\n",
-               st->pwr_clk_freq,
-               st->is_ext_pwr_clk ? "yes" : "no");
-       seq_printf(seq, "Num. of frames: %d, PER (x10e4): %d, Throughput: %dKbps/s\n",
-               st->nb_rx_frame, st->per_total, st->throughput);
+                  st->pwr_clk_freq,
+                  st->is_ext_pwr_clk ? "yes" : "no");
+       seq_printf(seq,
+                  "N. of frames: %d, PER (x10e4): %d, Throughput: %dKbps/s\n",
+                  st->nb_rx_frame, st->per_total, st->throughput);
        seq_puts(seq, "       Num. of      PER     RSSI      SNR      CFO\n");
        seq_puts(seq, "        frames  (x10e4)    (dBm)     (dB)    (kHz)\n");
        for (i = 0; i < ARRAY_SIZE(channel_names); i++) {
@@ -160,8 +161,9 @@ static int wfx_rx_stats_show(struct seq_file *seq, void *v)
 }
 DEFINE_SHOW_ATTRIBUTE(wfx_rx_stats);
 
-static ssize_t wfx_send_pds_write(struct file *file, const char __user *user_buf,
-                            size_t count, loff_t *ppos)
+static ssize_t wfx_send_pds_write(struct file *file,
+                                 const char __user *user_buf,
+                                 size_t count, loff_t *ppos)
 {
        struct wfx_dev *wdev = file->private_data;
        char *buf;