diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2011-06-22 10:13:17 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2011-10-20 15:00:18 +0100 |
commit | cba2efb64be89ad5404b38f7e39b50f337f45fb9 (patch) | |
tree | 957fbc76a674113ad176298b197aefbbdbcb1ea6 | |
parent | 5db6acdb27fdf76b013ce5b7d0d43b83ee851b6d (diff) | |
download | linux-cba2efb64be89ad5404b38f7e39b50f337f45fb9.tar.bz2 |
MIPS: PNX8550: Fix section mismatch
Triggered by pnx8550-jbs_defconfig and pnx8550-stb810_defconfig:
WARNING: vmlinux.o(.text+0xc0c): Section mismatch in reference from the function prom_getcmdline() to the variable .init.data:arcs_cmdline
The function prom_getcmdline() references
the variable __initdata arcs_cmdline.
This is often because prom_getcmdline lacks a __initdata
annotation or the annotation of arcs_cmdline is wrong.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/pnx8550/common/prom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/pnx8550/common/prom.c b/arch/mips/pnx8550/common/prom.c index 32f70097c3c7..49639e8120d8 100644 --- a/arch/mips/pnx8550/common/prom.c +++ b/arch/mips/pnx8550/common/prom.c @@ -30,7 +30,7 @@ typedef struct }t_env_var; -char * prom_getcmdline(void) +char * __init prom_getcmdline(void) { return &(arcs_cmdline[0]); } |