Skip to content
  • Russell King's avatar
    ARM: RiscPC: acornfb: fix section mismatches · 52fe1163
    Russell King authored
    
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x38): Section mismatch in reference from the function acornfb_probe() to the function .init.text:acornfb_setup()
    The function __devinit acornfb_probe() references
    a function __init acornfb_setup().
    If acornfb_setup is only used by acornfb_probe then
    annotate acornfb_setup with a matching annotation.
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x3c): Section mismatch in reference from the function acornfb_probe() to the function .init.text:acornfb_init_fbinfo()
    The function __devinit acornfb_probe() references
    a function __init acornfb_init_fbinfo().
    If acornfb_init_fbinfo is only used by acornfb_probe then
    annotate acornfb_init_fbinfo with a matching annotation.
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x4c0): Section mismatch in reference from the function acornfb_probe() to the (unknown reference) .init.data:(unknown)
    The function __devinit acornfb_probe() references
    a (unknown reference) __initdata (unknown).
    If (unknown) is only used by acornfb_probe then
    annotate (unknown) with a matching annotation.
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x4c8): Section mismatch in reference from the function acornfb_probe() to the (unknown reference) .init.data:(unknown)
    The function __devinit acornfb_probe() references
    a (unknown reference) __initdata (unknown).
    If (unknown) is only used by acornfb_probe then
    annotate (unknown) with a matching annotation.
    
    WARNING: drivers/video/built-in.o(.devinit.text+0x4cc): Section mismatch in reference from the function acornfb_probe() to the (unknown reference) .init.data:(unknown)
    The function __devinit acornfb_probe() references
    a (unknown reference) __initdata (unknown).
    If (unknown) is only used by acornfb_probe then
    annotate (unknown) with a matching annotation.
    
    Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
    52fe1163