staging: rtl8192u: Fix alignment to match open parenthesis

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>
This commit is contained in:
Sumera Priyadarsini 2019-09-18 19:27:43 +05:30 committed by Greg Kroah-Hartman
parent 78f7aac11e
commit 3278ef5961
1 changed files with 5 additions and 5 deletions

View File

@ -614,13 +614,13 @@ static void rtl8192_proc_init_one(struct net_device *dev)
return; return;
proc_create_single("stats-rx", S_IFREG | S_IRUGO, dir, 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_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_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_create_single("registers", S_IFREG | S_IRUGO, dir,
proc_get_registers); proc_get_registers);
} }
static void rtl8192_proc_remove_one(struct net_device *dev) 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 */ /* Rx A-MPDU */
if (driver_info->FirstAGGR == 1 || driver_info->PartAggr == 1) if (driver_info->FirstAGGR == 1 || driver_info->PartAggr == 1)
RT_TRACE(COMP_RXDESC, 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); driver_info->FirstAGGR, driver_info->PartAggr);
} }