ARM: OMAP: FB: add controller platform data
authorImre Deak <imre.deak@solidboot.com>
Thu, 7 Dec 2006 01:13:50 +0000 (17:13 -0800)
committerTony Lindgren <tony@atomide.com>
Tue, 8 May 2007 20:26:05 +0000 (13:26 -0700)
Add controller platform data

Signed-off-by: Imre Deak <imre.deak@solidboot.com>
Signed-off-by: Juha Yrjola <juha.yrjola@solidboot.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/plat-omap/fb.c
include/asm-arm/arch-omap/omapfb.h

index 56acb87..91ebdaf 100644 (file)
@@ -55,6 +55,11 @@ void omapfb_reserve_mem(void)
        }
 }
 
+void omapfb_set_ctrl_platform_data(void *data)
+{
+       omapfb_config.ctrl_platform_data = data;
+}
+
 static inline int omap_init_fb(void)
 {
        const struct omap_lcd_config *conf;
index fccdb3d..ce80a71 100644 (file)
@@ -292,8 +292,9 @@ struct omapfb_device {
 };
 
 struct omapfb_platform_data {
-       struct omap_lcd_config   lcd;
-       struct omap_fbmem_config fbmem;
+       struct omap_lcd_config  lcd;
+       struct omapfb_mem_desc  mem_desc;
+       void                    *ctrl_platform_data;
 };
 
 #define OMAPFB_EVENT_READY     1
@@ -317,8 +318,9 @@ extern int  omapfb_update_window_async(struct omapfb_update_window *win,
                                        void (*callback)(void *),
                                        void *callback_data);
 
-/* in arch/arm/plat-omap/devices.c */
+/* in arch/arm/plat-omap/fb.c */
 extern void omapfb_reserve_mem(void);
+extern void omapfb_set_ctrl_platform_data(void *pdata);
 
 #endif /* __KERNEL__ */