aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEunchul Kim <chulspro.kim@samsung.com>2012-12-22 03:49:29 -0500
committerInki Dae <inki.dae@samsung.com>2013-01-04 01:54:34 -0500
commit13a32eb08de6fd87044a524b2c644ccfaa6808a3 (patch)
treee8a839ba63a3a07e865635df19e05d804352faae
parente39d5ce13201b18a3ae458c023fc7b4cb33263e8 (diff)
drm/exynos: remove needless parenthesis.
This patch removes needless parenthesis. This was pointed out but in case of fimc side. we missed it. Signed-off-by: Eunchul Kim <chulspro.kim@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_fimc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimc.c b/drivers/gpu/drm/exynos/exynos_drm_fimc.c
index 9f52b7faa4b3..2c03ffa817e8 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_fimc.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_fimc.c
@@ -1212,7 +1212,7 @@ static int fimc_dst_set_buf_seq(struct fimc_context *ctx, u32 buf_id,
1212 } 1212 }
1213 1213
1214 /* sequence id */ 1214 /* sequence id */
1215 cfg &= (~mask); 1215 cfg &= ~mask;
1216 cfg |= (enable << buf_id); 1216 cfg |= (enable << buf_id);
1217 fimc_write(cfg, EXYNOS_CIFCNTSEQ); 1217 fimc_write(cfg, EXYNOS_CIFCNTSEQ);
1218 1218