mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 01:34:00 +08:00
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>
This commit is contained in:
parent
6cbe5e9526
commit
1bc0b9fd75
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user