> On 03/01/2011 01:06 PM, Maurus Cuelenaere wrote: >> Use the jzfb_enable() function instead of manually faking it in jzfb_probe(). >> Also add the reverse operation when the framebuffer couldn't be registered. >> >> Signed-off-by: Maurus Cuelenaere <mcuelenaere@xxxxxxxxx> >> --- >> drivers/video/jz4740_fb.c | 8 +++----- >> 1 files changed, 3 insertions(+), 5 deletions(-) >> >> diff --git a/drivers/video/jz4740_fb.c b/drivers/video/jz4740_fb.c >> index cea7b7e..2f3ea57 100644 >> --- a/drivers/video/jz4740_fb.c >> +++ b/drivers/video/jz4740_fb.c >> @@ -707,16 +707,13 @@ static int __devinit jzfb_probe(struct platform_device *pdev) >> >> fb_alloc_cmap(&fb->cmap, 256, 0); >> >> - clk_enable(jzfb->ldclk); >> - jzfb->is_enabled = 1; >> - >> - writel(jzfb->framedesc->next, jzfb->base + JZ_REG_LCD_DA0); >> - >> fb->mode = NULL; >> jzfb_set_par(fb); >> >> jzfb_pins_operation(jzfb, REQUEST_PINS); >> >> + jzfb_blank(FB_BLANK_UNBLANK, fb); >> + > I'd prefer: > jzfb_enable(jzfb); > jzfb->is_enabled = 1; > > since there is no need for locking here. > Ok. -- Maurus Cuelenaere -- To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html