diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2010-07-26 19:08:14 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-07-26 19:08:14 +0100 |
commit | 9625b51350ccb4db60b743f0d1e5ab696e77ef58 (patch) | |
tree | ca1bcd201428603a77017e4c3f93bc5164b75440 /mm/vmscan.c | |
parent | 3852cc3343b658275964112984321134f3de0118 (diff) | |
download | talos-op-linux-9625b51350ccb4db60b743f0d1e5ab696e77ef58.tar.gz talos-op-linux-9625b51350ccb4db60b743f0d1e5ab696e77ef58.zip |
VIDEO: PMAG-BA: Fix section mismatch
WARNING: drivers/video/built-in.o(.data+0x1e0): Section mismatch in reference fr
om the variable pmagbafb_driver to the function .init.text:pmagbafb_probe()
The variable pmagbafb_driver references
the function __init pmagbafb_probe()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console,
Fixing this one triggers 2 more:
WARNING: drivers/video/built-in.o(.devinit.text+0xc0): Section mismatch in reference from the function pmagbafb_probe() to the variable .init.data:pmagbafb_fix
The function __devinit pmagbafb_probe() references
a variable __initdata pmagbafb_fix.
If pmagbafb_fix is only used by pmagbafb_probe then
annotate pmagbafb_fix with a matching annotation.
WARNING: drivers/video/built-in.o(.devinit.text+0x108): Section mismatch in reference from the function pmagbafb_probe() to the variable .init.data:pmagbafb_defined
The function __devinit pmagbafb_probe() references
a variable __initdata pmagbafb_defined.
If pmagbafb_defined is only used by pmagbafb_probe then
annotate pmagbafb_defined with a matching annotation.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'mm/vmscan.c')
0 files changed, 0 insertions, 0 deletions