aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-02-21 19:42:27 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2013-02-21 20:22:18 -0500
commit0c980826211611178b6d76b246d00a4c840f21e5 (patch)
tree6a5e1b4514e9419fb2407fdb3134ae2c3e1ede41
parenta25fc871b002c51944c05b9a09f1526dfbe32d39 (diff)
drivers/video/exynos/exynos_mipi_dsi.c: fix an error check condition
Checking an unsigned variable for negative value returns false. Hence use the macro to fix it. Fixes the following smatch warning: drivers/video/exynos/exynos_mipi_dsi.c:417 exynos_mipi_dsi_probe() warn: unsigned 'dsim->irq' is never less than zero. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Acked-by: Donghwa Lee <dh09.lee@samsung.com> Cc: Inki Dae <inki.dae@samsung.com> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--drivers/video/exynos/exynos_mipi_dsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/exynos/exynos_mipi_dsi.c b/drivers/video/exynos/exynos_mipi_dsi.c
index 4a17cdccef34..f623dfcca927 100644
--- a/drivers/video/exynos/exynos_mipi_dsi.c
+++ b/drivers/video/exynos/exynos_mipi_dsi.c
@@ -414,7 +414,7 @@ static int exynos_mipi_dsi_probe(struct platform_device *pdev)
414 } 414 }
415 415
416 dsim->irq = platform_get_irq(pdev, 0); 416 dsim->irq = platform_get_irq(pdev, 0);
417 if (dsim->irq < 0) { 417 if (IS_ERR_VALUE(dsim->irq)) {
418 dev_err(&pdev->dev, "failed to request dsim irq resource\n"); 418 dev_err(&pdev->dev, "failed to request dsim irq resource\n");
419 ret = -EINVAL; 419 ret = -EINVAL;
420 goto err_platform_get_irq; 420 goto err_platform_get_irq;