From: Matthias Brugger Date: Fri, 16 Nov 2012 17:51:01 +0000 (+0100) Subject: OMAPFB: Delete if statement evaluating a constant. X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=4ee9a5377b7888fae8aa6064e4cc8d0fd32871a2;p=openwrt%2Fstaging%2Fblogic.git OMAPFB: Delete if statement evaluating a constant. Variable r is never set to any value different to zero. Delete the if statement as it will never executed. Signed-off-by: Matthias Brugger Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/omap2/omapfb/omapfb-main.c b/drivers/video/omap2/omapfb/omapfb-main.c index 408a3cce47ad..1a69d7ca92e5 100644 --- a/drivers/video/omap2/omapfb/omapfb-main.c +++ b/drivers/video/omap2/omapfb/omapfb-main.c @@ -2445,7 +2445,6 @@ static int __init omapfb_probe(struct platform_device *pdev) fbdev->dev = &pdev->dev; platform_set_drvdata(pdev, fbdev); - r = 0; fbdev->num_displays = 0; dssdev = NULL; for_each_dss_dev(dssdev) { @@ -2468,9 +2467,6 @@ static int __init omapfb_probe(struct platform_device *pdev) d->update_mode = OMAPFB_AUTO_UPDATE; } - if (r) - goto cleanup; - if (fbdev->num_displays == 0) { dev_err(&pdev->dev, "no displays\n"); r = -EINVAL;