[COMMON] fimc-is2: remove unnecessary null check: buf
authorJeongtae Park <jtp.park@samsung.com>
Tue, 3 Jul 2018 06:01:46 +0000 (15:01 +0900)
committerSunyoung Kang <sy0816.kang@samsung.com>
Mon, 23 Jul 2018 08:05:43 +0000 (17:05 +0900)
Prevent Defect ID: CID 232737, 232738
PR JIRA ID: CPR-32

Change-Id: I013cc0c5dee26c958424f91ea14d71832123c637
Signed-off-by: Jeongtae Park <jtp.park@samsung.com>
drivers/media/platform/exynos/fimc-is2/fimc-is-video-3aaf.c
drivers/media/platform/exynos/fimc-is2/fimc-is-video-3aag.c

index 415d7a1b801655ee96bca968c36f271e8e576bc6..d9b240f0e8d46a8fed218e9b6ff21e0ba0cc1d32 100644 (file)
@@ -400,8 +400,7 @@ static int fimc_is_3xf_video_dqbuf(struct file *file, void *priv,
        if (ret)
                merr("dqbuf is fail(%d)", vctx, ret);
 
-       if (!buf)
-               mvdbgs(3, "%s(index: %d)\n", vctx, &vctx->queue, __func__, buf->index);
+       mvdbgs(3, "%s(index: %d)\n", vctx, &vctx->queue, __func__, buf->index);
 
        return ret;
 }
index 3b76bde46316181616905a0b7f13fbe3f630a227..167930ca9b5406ffa06f14e4d4efeb6368bfa27a 100644 (file)
@@ -400,8 +400,7 @@ static int fimc_is_3xg_video_dqbuf(struct file *file, void *priv,
        if (ret)
                merr("dqbuf is fail(%d)", vctx, ret);
 
-       if (!buf)
-               mvdbgs(3, "%s(index: %d)\n", vctx, &vctx->queue, __func__, buf->index);
+       mvdbgs(3, "%s(index: %d)\n", vctx, &vctx->queue, __func__, buf->index);
 
        return ret;
 }