Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=df470c30da7900a3fbc48e3d34187a3786c1acdb
Commit:     df470c30da7900a3fbc48e3d34187a3786c1acdb
Parent:     b9860ecf2553fbc4c3bd66f5df7e82a6d5179775
Author:     Randy Dunlap <[EMAIL PROTECTED]>
AuthorDate: Tue Mar 6 01:42:01 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Mar 6 09:30:24 2007 -0800

    [PATCH] atyfb: fix kconfig error part 2
    
    Fix implicit declarations and missing code in atyfb.
    
    drivers/video/aty/atyfb_base.c:2137: warning: implicit declaration of 
function 'a
    ty_ld_lcd'
    drivers/video/aty/atyfb_base.c:2154: warning: implicit declaration of 
function 'a
    ty_st_lcd'
    atyfb_base.c:(.text+0x33e5c): undefined reference to `aty_ld_lcd'
    atyfb_base.c:(.text+0x33eb2): undefined reference to `aty_st_lcd'
    
    Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
    Signed-off-by: Antonino Daplas <[EMAIL PROTECTED]>
    Cc: James Simmons <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/video/aty/atyfb.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/video/aty/atyfb.h b/drivers/video/aty/atyfb.h
index f72faff..dc62f8e 100644
--- a/drivers/video/aty/atyfb.h
+++ b/drivers/video/aty/atyfb.h
@@ -284,7 +284,8 @@ static inline void aty_st_8(int regindex, u8 val, const 
struct atyfb_par *par)
 #endif
 }
 
-#if defined(CONFIG_PM) || defined(CONFIG_PMAC_BACKLIGHT) || defined 
(CONFIG_FB_ATY_GENERIC_LCD)
+#if defined(CONFIG_PM) || defined(CONFIG_PMAC_BACKLIGHT) || \
+defined (CONFIG_FB_ATY_GENERIC_LCD) || defined (CONFIG_FB_ATY_BACKLIGHT)
 extern void aty_st_lcd(int index, u32 val, const struct atyfb_par *par);
 extern u32 aty_ld_lcd(int index, const struct atyfb_par *par);
 #endif
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to