[COMMON] fimc-is2: Fix a bug from prevent - no_effect
authorSunmi Lee <carrotsm.lee@samsung.com>
Mon, 2 Jul 2018 05:37:28 +0000 (14:37 +0900)
committerCosmin Tanislav <demonsingur@gmail.com>
Mon, 22 Apr 2024 17:22:51 +0000 (20:22 +0300)
The type of "mode" in sensor_2l3_cis_is_wdr_mode_on is unsigned int.
So it is no use to check the value of mode is less than zero.

Prevent ID: 233013
PR JIRA ID: CPR-24

Change-Id: I4e83edb0f69c14cc783372453b4ed7dda8e15b4f
Signed-off-by: Sunmi Lee <carrotsm.lee@samsung.com>
drivers/media/platform/exynos/fimc-is2/sensor/module_framework/cis/fimc-is-cis-2l3.c

index eb8fd7ac49a2c1b77f2a0e1bf023358ece5a6bd4..bf87bed6d032e6c34d34026fd9b8ec1e2556d67e 100644 (file)
@@ -80,7 +80,7 @@ static bool sensor_2l3_cis_is_wdr_mode_on(cis_shared_data *cis_data)
        if (!fimc_is_vender_wdr_mode_on(cis_data))
                return false;
 
-       if (mode < 0 || mode >= SENSOR_2L3_MODE_MAX) {
+       if (mode >= SENSOR_2L3_MODE_MAX) {
                err("invalid mode(%d)!!", mode);
                return false;
        }