aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/via/lcd.c
diff options
context:
space:
mode:
authorSteffen Trumtrar <s.trumtrar@pengutronix.de>2012-11-22 07:11:32 -0500
committerSteffen Trumtrar <s.trumtrar@pengutronix.de>2013-01-24 02:59:44 -0500
commitea4f3111ef0daffa1d11fded6f375227febca458 (patch)
tree4be2908bdb0ee68d5d7614d9cc2b01ed4fcf8be6 /drivers/video/via/lcd.c
parent7d1f9aeff1ee4a20b1aeb377dd0f579fe9647619 (diff)
viafb: rename display_timing to via_display_timing
The struct display_timing is specific to the via subsystem. The naming leads to collisions with the new struct display_timing, which is supposed to be a shared struct between different subsystems. To clean this up, prepend the existing struct with the subsystem it is specific to. Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Diffstat (limited to 'drivers/video/via/lcd.c')
-rw-r--r--drivers/video/via/lcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/via/lcd.c b/drivers/video/via/lcd.c
index 980ee1b1dcf3..5d21ff436ec8 100644
--- a/drivers/video/via/lcd.c
+++ b/drivers/video/via/lcd.c
@@ -549,7 +549,7 @@ void viafb_lcd_set_mode(const struct fb_var_screeninfo *var, u16 cxres,
549 int panel_hres = plvds_setting_info->lcd_panel_hres; 549 int panel_hres = plvds_setting_info->lcd_panel_hres;
550 int panel_vres = plvds_setting_info->lcd_panel_vres; 550 int panel_vres = plvds_setting_info->lcd_panel_vres;
551 u32 clock; 551 u32 clock;
552 struct display_timing timing; 552 struct via_display_timing timing;
553 struct fb_var_screeninfo panel_var; 553 struct fb_var_screeninfo panel_var;
554 const struct fb_videomode *mode_crt_table, *panel_crt_table; 554 const struct fb_videomode *mode_crt_table, *panel_crt_table;
555 555