Skip to content

Commit

Permalink
ARC: boot log: Fix trailing semicolon
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Vineet Gupta <[email protected]>
  • Loading branch information
luisbg authored and vineetgarc committed Jan 23, 2018
1 parent 7d82c5f commit a46f24a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arc/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit a46f24a

Please sign in to comment.