Browse Source

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>
Eunchul Kim 12 years ago
parent
commit
13a32eb08d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/gpu/drm/exynos/exynos_drm_fimc.c

+ 1 - 1
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,
 	}
 
 	/* sequence id */
-	cfg &= (~mask);
+	cfg &= ~mask;
 	cfg |= (enable << buf_id);
 	fimc_write(cfg, EXYNOS_CIFCNTSEQ);