Explorar el Código

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>
Luis de Bethencourt hace 7 años
padre
commit
a46f24acf8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      arch/arc/kernel/setup.c

+ 1 - 1
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");