mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 22:44:27 +08:00
[XTENSA] fix wrong usage of __init and __initdata in traps.c
A variable was defined with __init instead of __initdata and the function accessing that variable wasn't initialized with __init. Signed-off-by: Chris Zankel <chris@zankel.net>
This commit is contained in:
parent
50c46637aa
commit
b91dc336cc
@ -83,7 +83,7 @@ typedef struct {
|
|||||||
void* handler;
|
void* handler;
|
||||||
} dispatch_init_table_t;
|
} dispatch_init_table_t;
|
||||||
|
|
||||||
dispatch_init_table_t __init dispatch_init_table[] = {
|
static dispatch_init_table_t __initdata dispatch_init_table[] = {
|
||||||
|
|
||||||
{ EXCCAUSE_ILLEGAL_INSTRUCTION, 0, do_illegal_instruction},
|
{ EXCCAUSE_ILLEGAL_INSTRUCTION, 0, do_illegal_instruction},
|
||||||
{ EXCCAUSE_SYSTEM_CALL, KRNL, fast_syscall_kernel },
|
{ EXCCAUSE_SYSTEM_CALL, KRNL, fast_syscall_kernel },
|
||||||
@ -305,7 +305,7 @@ do_debug(struct pt_regs *regs)
|
|||||||
|
|
||||||
#define set_handler(idx,handler) (exc_table[idx] = (unsigned long) (handler))
|
#define set_handler(idx,handler) (exc_table[idx] = (unsigned long) (handler))
|
||||||
|
|
||||||
void trap_init(void)
|
void __init trap_init(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user