• Randy Dunlap's avatar
    fbdev: atyfb: always declare aty_{ld,st}_lcd() · 39a3898a
    Randy Dunlap authored
    The previously added stubs for aty_{ld,}st_lcd() make it
    so that these functions are used regardless of the config
    options that were guarding them, so remove the #ifdef/#endif
    lines and make their declarations always visible.
    This fixes build warnings that were reported by clang:
    
       drivers/video/fbdev/aty/atyfb_base.c:180:6: warning: no previous prototype for function 'aty_st_lcd' [-Wmissing-prototypes]
       void aty_st_lcd(int index, u32 val, const struct atyfb_par *par)
            ^
       drivers/video/fbdev/aty/atyfb_base.c:180:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
       void aty_st_lcd(int index, u32 val, const struct atyfb_par *par)
    
       drivers/video/fbdev/aty/atyfb_base.c:183:5: warning: no previous prototype for function 'aty_ld_lcd' [-Wmissing-prototypes]
       u32 aty_ld_lcd(int index, const struct atyfb_par *par)
           ^
       drivers/video/fbdev/aty/atyfb_base.c:183:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
       u32 aty_ld_lcd(int index, const struct atyfb_par *par)
    
    They should not be marked as static since they are used in
    mach64_ct.c.
    
    Fixes: bfa5782b ("fbdev: atyfb: add stubs for aty_{ld,st}_lcd()")
    Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
    Reported-by: default avatarkernel test robot <lkp@intel.com>
    Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
    Cc: Nick Desaulniers <ndesaulniers@google.com>
    Cc: linux-fbdev@vger.kernel.org
    Cc: dri-devel@lists.freedesktop.org
    Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
    Cc: Sam Ravnborg <sam@ravnborg.org>
    Cc: David Airlie <airlied@linux.ie>
    Cc: Jani Nikula <jani.nikula@linux.intel.com>
    Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
    Link: https://patchwork.freedesktop.org/patch/msgid/20210224215528.822-1-rdunlap@infradead.orgAcked-by: default avatarNick Desaulniers <ndesaulniers@google.com>
    Signed-off-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
    39a3898a
atyfb.h 8.72 KB