staging: rtl8192u: Fix alignment to match open parenthesis
authorSumera Priyadarsini <sylphrenadin@gmail.com>
Wed, 18 Sep 2019 13:57:43 +0000 (19:27 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Sep 2019 19:57:58 +0000 (21:57 +0200)
This patch fixes the file r8192U_core.c to avoid the checkpatch.pl
warning:
CHECK: Alignment should match open parenthesis

Signed-off-by: Sumera Priyadarsini <sylphrenadin@gmail.com>
Link: https://lore.kernel.org/r/07a4311b70ed22833a01a9067418639905041cb7.1568814125.git.sylphrenadin@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/r8192U_core.c

index ecdd4b1..f361cae 100644 (file)
@@ -614,13 +614,13 @@ static void rtl8192_proc_init_one(struct net_device *dev)
                return;
 
        proc_create_single("stats-rx", S_IFREG | S_IRUGO, dir,
-                       proc_get_stats_rx);
+                          proc_get_stats_rx);
        proc_create_single("stats-tx", S_IFREG | S_IRUGO, dir,
-                       proc_get_stats_tx);
+                          proc_get_stats_tx);
        proc_create_single("stats-ap", S_IFREG | S_IRUGO, dir,
-                       proc_get_stats_ap);
+                          proc_get_stats_ap);
        proc_create_single("registers", S_IFREG | S_IRUGO, dir,
-                       proc_get_registers);
+                          proc_get_registers);
 }
 
 static void rtl8192_proc_remove_one(struct net_device *dev)
@@ -4508,7 +4508,7 @@ static void query_rxdesc_status(struct sk_buff *skb,
                /* Rx A-MPDU */
                if (driver_info->FirstAGGR == 1 || driver_info->PartAggr == 1)
                        RT_TRACE(COMP_RXDESC,
-                               "driver_info->FirstAGGR = %d, driver_info->PartAggr = %d\n",
+                                "driver_info->FirstAGGR = %d, driver_info->PartAggr = %d\n",
                                 driver_info->FirstAGGR, driver_info->PartAggr);
        }