Skip to content

Commit

Permalink
drm/exynos: remove needless parenthesis.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Eunchul Kim authored and Inki Dae committed Jan 4, 2013
1 parent e39d5ce commit 13a32eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/exynos/exynos_drm_fimc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 13a32eb

Please sign in to comment.