video: au1100fb: Remove casting the return value which is a void pointer
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
272b98c645
commit
5a7bbe86b0
|
@ -588,7 +588,7 @@ int au1100fb_drv_remove(struct platform_device *dev)
|
||||||
if (!dev)
|
if (!dev)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
fbdev = (struct au1100fb_device *) platform_get_drvdata(dev);
|
fbdev = platform_get_drvdata(dev);
|
||||||
|
|
||||||
#if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
|
#if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
|
||||||
au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
|
au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
|
||||||
|
|
Loading…
Reference in New Issue