Skip to content
  • Ralf Baechle's avatar
    VIDEO: PMAGB-B: Fix section mismatch · 5b1638d9
    Ralf Baechle authored
    
    
    WARNING: drivers/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.
    
    Fixing this one triggers a few more mismatches in order:
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x414): Section mismatch in reference from the function pmagbbfb_probe() to the variable .init.data:pmagbbfb_fix
    The function __devinit pmagbbfb_probe() references
    a variable __initdata pmagbbfb_fix.
    If pmagbbfb_fix is only used by pmagbbfb_probe then
    annotate pmagbbfb_fix with a matching annotation.
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x45c): Section mismatch in reference from the function pmagbbfb_probe() to the variable .init.data:pmagbbfb_defined
    The function __devinit pmagbbfb_probe() references
    a variable __initdata pmagbbfb_defined.
    If pmagbbfb_defined is only used by pmagbbfb_probe then
    annotate pmagbbfb_defined with a matching annotation.
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x5fc): Section mismatch in reference from the function pmagbbfb_probe() to the function .init.text:pmagbbfb_screen_setup()
    The function __devinit pmagbbfb_probe() references
    a function __init pmagbbfb_screen_setup().
    If pmagbbfb_screen_setup is only used by pmagbbfb_probe then
    annotate pmagbbfb_screen_setup with a matching annotation.
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x6f4): Section mismatch in reference from the function pmagbbfb_probe() to the function .init.text:pmagbbfb_osc_setup()
    The function __devinit pmagbbfb_probe() references
    a function __init pmagbbfb_osc_setup().
    If pmagbbfb_osc_setup is only used by pmagbbfb_probe then
    annotate pmagbbfb_osc_setup with a matching annotation.
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x5f8): Section mismatch in reference from the function pmagbbfb_osc_setup() to the variable .init.data:pmagbbfb_freqs.15993
    The function __devinit pmagbbfb_osc_setup() references
    a variable __initdata pmagbbfb_freqs.15993.
    If pmagbbfb_freqs.15993 is only used by pmagbbfb_osc_setup then
    annotate pmagbbfb_freqs.15993 with a matching annotation.
    
    Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
    5b1638d9