aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/pxafb.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/pxafb.c')
-rw-r--r--drivers/video/pxafb.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/video/pxafb.c b/drivers/video/pxafb.c
index 3ab6e3d973a1..3ee314beacc1 100644
--- a/drivers/video/pxafb.c
+++ b/drivers/video/pxafb.c
@@ -355,9 +355,8 @@ static int pxafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
355 } 355 }
356 356
357#ifdef CONFIG_CPU_FREQ 357#ifdef CONFIG_CPU_FREQ
358 pr_debug("pxafb: dma period = %d ps, clock = %d kHz\n", 358 pr_debug("pxafb: dma period = %d ps\n",
359 pxafb_display_dma_period(var), 359 pxafb_display_dma_period(var));
360 get_clk_frequency_khz(0));
361#endif 360#endif
362 361
363 return 0; 362 return 0;
@@ -1301,8 +1300,8 @@ static void pxafb_decode_mode_info(struct pxafb_info *fbi,
1301 } 1300 }
1302} 1301}
1303 1302
1304static int pxafb_decode_mach_info(struct pxafb_info *fbi, 1303static void pxafb_decode_mach_info(struct pxafb_info *fbi,
1305 struct pxafb_mach_info *inf) 1304 struct pxafb_mach_info *inf)
1306{ 1305{
1307 unsigned int lcd_conn = inf->lcd_conn; 1306 unsigned int lcd_conn = inf->lcd_conn;
1308 1307
@@ -1333,7 +1332,7 @@ static int pxafb_decode_mach_info(struct pxafb_info *fbi,
1333 fbi->lccr0 = inf->lccr0; 1332 fbi->lccr0 = inf->lccr0;
1334 fbi->lccr3 = inf->lccr3; 1333 fbi->lccr3 = inf->lccr3;
1335 fbi->lccr4 = inf->lccr4; 1334 fbi->lccr4 = inf->lccr4;
1336 return -EINVAL; 1335 goto decode_mode;
1337 } 1336 }
1338 1337
1339 if (lcd_conn == LCD_MONO_STN_8BPP) 1338 if (lcd_conn == LCD_MONO_STN_8BPP)
@@ -1343,8 +1342,8 @@ static int pxafb_decode_mach_info(struct pxafb_info *fbi,
1343 fbi->lccr3 |= (lcd_conn & LCD_BIAS_ACTIVE_LOW) ? LCCR3_OEP : 0; 1342 fbi->lccr3 |= (lcd_conn & LCD_BIAS_ACTIVE_LOW) ? LCCR3_OEP : 0;
1344 fbi->lccr3 |= (lcd_conn & LCD_PCLK_EDGE_FALL) ? LCCR3_PCP : 0; 1343 fbi->lccr3 |= (lcd_conn & LCD_PCLK_EDGE_FALL) ? LCCR3_PCP : 0;
1345 1344
1345decode_mode:
1346 pxafb_decode_mode_info(fbi, inf->modes, inf->num_modes); 1346 pxafb_decode_mode_info(fbi, inf->modes, inf->num_modes);
1347 return 0;
1348} 1347}
1349 1348
1350static struct pxafb_info * __init pxafb_init_fbinfo(struct device *dev) 1349static struct pxafb_info * __init pxafb_init_fbinfo(struct device *dev)