[COMMON] g2d: fix mask for command
authorhyesoo.yu <hyesoo.yu@samsung.com>
Tue, 18 Jul 2017 10:30:30 +0000 (19:30 +0900)
committerSeungchul Kim <sc377.kim@samsung.com>
Mon, 28 May 2018 05:27:29 +0000 (14:27 +0900)
Fix the command mask for opaque flag

Change-Id: I0c668401cf3afd35bf8fb91ae9f0e742fb0572f2
Signed-off-by: hyesoo.yu <hyesoo.yu@samsung.com>
drivers/gpu/exynos/g2d/g2d_command.c

index 882ea8c44891801dffe3cb49629ef7e33abb8ad7..826ae64a5b4db49d86e76def5070f661b4239955 100644 (file)
@@ -461,7 +461,7 @@ static struct command_checker source_command_checker[G2DSFR_SRC_FIELD_COUNT] = {
        {"BOTTOM",      0x0038, 0x00003FFF, check_width_height,},
        {"WIDTH",       0x0070, 0x00003FFF, check_width_height,},
        {"HEIGHT",      0x0074, 0x00003FFF, check_width_height,},
-       {"COMMAND",     0x0000, 0x03100001, NULL,},
+       {"COMMAND",     0x0000, 0x03100003, NULL,},
        {"SELECT",      0x0004, 0x00000001, NULL,},
        {"ROTATE",      0x0008, 0x00000031, NULL,},
        {"DSTLEFT",     0x000C, 0x00001FFF, NULL,},