From: Tomi Valkeinen Date: Tue, 20 Sep 2011 11:49:50 +0000 (+0300) Subject: OMAPFB: remove omapfb_set_platform_data() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f060f95365ce71acbf29ef5dac580ab067600f4c;p=mv-sheeva.git OMAPFB: remove omapfb_set_platform_data() omapfb_set_platform_data() is no longer used, so remove it. Signed-off-by: Tomi Valkeinen Acked-by: Tony Lindgren --- diff --git a/arch/arm/plat-omap/fb.c b/arch/arm/plat-omap/fb.c index a742b60912c..45f35c983f4 100644 --- a/arch/arm/plat-omap/fb.c +++ b/arch/arm/plat-omap/fb.c @@ -52,10 +52,6 @@ static struct platform_device omap_fb_device = { .num_resources = 0, }; -void omapfb_set_platform_data(struct omapfb_platform_data *data) -{ -} - static int __init omap_init_fb(void) { const struct omap_lcd_config *conf; @@ -87,11 +83,6 @@ static struct platform_device omap_fb_device = { .num_resources = 0, }; -void omapfb_set_platform_data(struct omapfb_platform_data *data) -{ - omapfb_config = *data; -} - static int __init omap_init_fb(void) { return platform_device_register(&omap_fb_device); @@ -99,10 +90,4 @@ static int __init omap_init_fb(void) arch_initcall(omap_init_fb); -#else - -void omapfb_set_platform_data(struct omapfb_platform_data *data) -{ -} - #endif diff --git a/include/linux/omapfb.h b/include/linux/omapfb.h index 7a8e0ea345e..a575706a83c 100644 --- a/include/linux/omapfb.h +++ b/include/linux/omapfb.h @@ -226,9 +226,6 @@ struct omapfb_platform_data { struct omap_lcd_config lcd; }; -/* in arch/arm/plat-omap/fb.c */ -extern void omapfb_set_platform_data(struct omapfb_platform_data *data); - #endif #endif /* __OMAPFB_H */