diff options
Diffstat (limited to 'drivers/video/bf54x-lq043fb.c')
-rw-r--r-- | drivers/video/bf54x-lq043fb.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/video/bf54x-lq043fb.c b/drivers/video/bf54x-lq043fb.c index 54df3d44af8f..23b2a8c0dbfc 100644 --- a/drivers/video/bf54x-lq043fb.c +++ b/drivers/video/bf54x-lq043fb.c | |||
@@ -433,7 +433,7 @@ static int bl_get_brightness(struct backlight_device *bd) | |||
433 | return 0; | 433 | return 0; |
434 | } | 434 | } |
435 | 435 | ||
436 | static struct backlight_ops bfin_lq043fb_bl_ops = { | 436 | static const struct backlight_ops bfin_lq043fb_bl_ops = { |
437 | .get_brightness = bl_get_brightness, | 437 | .get_brightness = bl_get_brightness, |
438 | }; | 438 | }; |
439 | 439 | ||
@@ -650,6 +650,12 @@ static int __devinit bfin_bf54x_probe(struct platform_device *pdev) | |||
650 | props.max_brightness = 255; | 650 | props.max_brightness = 255; |
651 | bl_dev = backlight_device_register("bf54x-bl", NULL, NULL, | 651 | bl_dev = backlight_device_register("bf54x-bl", NULL, NULL, |
652 | &bfin_lq043fb_bl_ops, &props); | 652 | &bfin_lq043fb_bl_ops, &props); |
653 | if (IS_ERR(bl_dev)) { | ||
654 | printk(KERN_ERR DRIVER_NAME | ||
655 | ": unable to register backlight.\n"); | ||
656 | ret = -EINVAL; | ||
657 | goto out9; | ||
658 | } | ||
653 | 659 | ||
654 | lcd_dev = lcd_device_register(DRIVER_NAME, &pdev->dev, NULL, &bfin_lcd_ops); | 660 | lcd_dev = lcd_device_register(DRIVER_NAME, &pdev->dev, NULL, &bfin_lcd_ops); |
655 | lcd_dev->props.max_contrast = 255, printk(KERN_INFO "Done.\n"); | 661 | lcd_dev->props.max_contrast = 255, printk(KERN_INFO "Done.\n"); |
@@ -657,6 +663,8 @@ static int __devinit bfin_bf54x_probe(struct platform_device *pdev) | |||
657 | 663 | ||
658 | return 0; | 664 | return 0; |
659 | 665 | ||
666 | out9: | ||
667 | unregister_framebuffer(fbinfo); | ||
660 | out8: | 668 | out8: |
661 | free_irq(info->irq, info); | 669 | free_irq(info->irq, info); |
662 | out7: | 670 | out7: |