Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

alpha: forward declare struct pt_regs in processor.h

Removal of exec domains uncovered this new warning. processor.h re-used
struct pt_regs from personality.h which is now gone.

./arch/alpha/include/asm/processor.h:47:33: warning: 'struct pt_regs' declared inside parameter list [enabled by default]

Signed-off-by: Richard Weinberger <richard@nod.at>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Matt Turner <mattst88@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Richard Weinberger and committed by
Linus Torvalds
396ada68 34c9a0ff

+1
+1
arch/alpha/include/asm/processor.h
··· 44 44 extern unsigned long thread_saved_pc(struct task_struct *); 45 45 46 46 /* Do necessary setup to start up a newly executed thread. */ 47 + struct pt_regs; 47 48 extern void start_thread(struct pt_regs *, unsigned long, unsigned long); 48 49 49 50 /* Free all resources held by a thread. */