diff options
author | Dan Carpenter <error27@gmail.com> | 2011-03-21 11:03:13 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-03-22 03:08:48 -0400 |
commit | beee1f20a185c7e79fd33bb83e04fe44ecd75af3 (patch) | |
tree | f7c9972b12bbcde5f2de7306494a4ada042e94ad /drivers/video/sh_mobile_lcdcfb.c | |
parent | e0998eab678233fae7dff7b92db08ad0f01acf91 (diff) |
fbdev: sh_mobile_lcdc: checking NULL instead of IS_ERR()
backlight_device_register() returns an ERR_PTR. It doesn't return NULL.
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video/sh_mobile_lcdcfb.c')
-rw-r--r-- | drivers/video/sh_mobile_lcdcfb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c index bf2629f83f40..757665bc500f 100644 --- a/drivers/video/sh_mobile_lcdcfb.c +++ b/drivers/video/sh_mobile_lcdcfb.c | |||
@@ -1088,8 +1088,9 @@ static struct backlight_device *sh_mobile_lcdc_bl_probe(struct device *parent, | |||
1088 | 1088 | ||
1089 | bl = backlight_device_register(ch->cfg.bl_info.name, parent, ch, | 1089 | bl = backlight_device_register(ch->cfg.bl_info.name, parent, ch, |
1090 | &sh_mobile_lcdc_bl_ops, NULL); | 1090 | &sh_mobile_lcdc_bl_ops, NULL); |
1091 | if (!bl) { | 1091 | if (IS_ERR(bl)) { |
1092 | dev_err(parent, "unable to register backlight device\n"); | 1092 | dev_err(parent, "unable to register backlight device: %ld\n", |
1093 | PTR_ERR(bl)); | ||
1093 | return NULL; | 1094 | return NULL; |
1094 | } | 1095 | } |
1095 | 1096 | ||