Skip to content

Commit 7041c57

Browse files
groeckAl Viro
authored andcommitted
score: traps: Add missing include file to fix build error
score images fail to build as follows. arch/score/kernel/traps.c: In function 'show_stack': arch/score/kernel/traps.c:55:3: error: implicit declaration of function '__get_user' __get_user() is declared in asm/uaccess.h, which was previously included through asm/module.h. Cc: Al Viro <viro@zeniv.linux.org.uk> Fixes: 88dd4a7 ("score: separate extable.h, switch module.h to it") Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
1 parent f1a9622 commit 7041c57

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

arch/score/kernel/traps.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include <asm/cacheflush.h>
3030
#include <asm/irq.h>
3131
#include <asm/irq_regs.h>
32+
#include <asm/uaccess.h>
3233

3334
unsigned long exception_handlers[32];
3435

0 commit comments

Comments
 (0)