Explorar o código

openrisc: remove semicolon from KSTK_ defs

Things break rather ungracefully when a semicolon gets substituted into
an expression... discovered while build-testing linux-next for 3.4

Signed-off-by: Jonas Bonn <jonas@southpole.se>
Jonas Bonn %!s(int64=13) %!d(string=hai) anos
pai
achega
1bc0b9fd75
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      arch/openrisc/include/asm/processor.h

+ 2 - 2
arch/openrisc/include/asm/processor.h

@@ -81,8 +81,8 @@ extern inline void prepare_to_copy(struct task_struct *tsk)
 #define INIT_THREAD  { }
 
 
-#define KSTK_EIP(tsk)   (task_pt_regs(tsk)->pc);
-#define KSTK_ESP(tsk)   (task_pt_regs(tsk)->sp);
+#define KSTK_EIP(tsk)   (task_pt_regs(tsk)->pc)
+#define KSTK_ESP(tsk)   (task_pt_regs(tsk)->sp)
 
 
 extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);