mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-08 15:04:45 +00:00
video: mmpfb: cleanup some static checker warnings in probe()
Sparse complains about using zero instead of NULL for pointers. Probably, if we enabled the warning, then GCC would complain about the unused initializers. I've just removed them. Smatch complains that we first check if "fbi" is NULL and then dereference it in the error handling. It turns out that "fbi" can't be NULL so I've removed the check. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
c150a2803d
commit
a513ad2d6d
@ -554,8 +554,8 @@ static void fb_info_clear(struct fb_info *info)
|
||||
static int mmpfb_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct mmp_buffer_driver_mach_info *mi;
|
||||
struct fb_info *info = 0;
|
||||
struct mmpfb_info *fbi = 0;
|
||||
struct fb_info *info;
|
||||
struct mmpfb_info *fbi;
|
||||
int ret, modes_num;
|
||||
|
||||
mi = pdev->dev.platform_data;
|
||||
@ -569,10 +569,6 @@ static int mmpfb_probe(struct platform_device *pdev)
|
||||
if (info == NULL)
|
||||
return -ENOMEM;
|
||||
fbi = info->par;
|
||||
if (!fbi) {
|
||||
ret = -EINVAL;
|
||||
goto failed;
|
||||
}
|
||||
|
||||
/* init fb */
|
||||
fbi->fb_info = info;
|
||||
@ -667,7 +663,6 @@ static int mmpfb_probe(struct platform_device *pdev)
|
||||
fbi->fb_start_dma);
|
||||
failed_destroy_mutex:
|
||||
mutex_destroy(&fbi->access_ok);
|
||||
failed:
|
||||
dev_err(fbi->dev, "mmp-fb: frame buffer device init failed\n");
|
||||
|
||||
framebuffer_release(info);
|
||||
|
Loading…
Reference in New Issue
Block a user