diff options
author | Luis de Bethencourt <luisbg@kernel.org> | 2018-01-23 16:16:09 +0100 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2018-01-23 20:12:28 +0100 |
commit | a46f24acf8bce70b5fdd6774793d121e54b99e97 (patch) | |
tree | 81b18c49070587fe1c88c27f03fa4aef17f98916 /arch/arc/kernel | |
parent | ARC: dw2 unwind: Fix trailing semicolon (diff) | |
download | linux-a46f24acf8bce70b5fdd6774793d121e54b99e97.tar.xz linux-a46f24acf8bce70b5fdd6774793d121e54b99e97.zip |
ARC: boot log: Fix trailing semicolon
The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.
Signed-off-by: Luis de Bethencourt <luisbg@kernel.org>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/kernel')
-rw-r--r-- | arch/arc/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/kernel/setup.c b/arch/arc/kernel/setup.c index 9d27331fe69a..ec12fe1c2f07 100644 --- a/arch/arc/kernel/setup.c +++ b/arch/arc/kernel/setup.c @@ -373,7 +373,7 @@ static void arc_chk_core_config(void) { struct cpuinfo_arc *cpu = &cpuinfo_arc700[smp_processor_id()]; int saved = 0, present = 0; - char *opt_nm = NULL;; + char *opt_nm = NULL; if (!cpu->extn.timer0) panic("Timer0 is not present!\n"); |