Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1293b619 authored by Wolfram Sang's avatar Wolfram Sang Committed by Inki Dae
Browse files

drm/exynos: fix comparison to bitshift when dealing with a mask



Due to a typo, the mask was destroyed by a comparison instead of a bit
shift.

Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent a588a8bb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -569,7 +569,7 @@
#define EXYNOS_CIIMGEFF_FIN_EMBOSSING		(4 << 26)
#define EXYNOS_CIIMGEFF_FIN_SILHOUETTE		(5 << 26)
#define EXYNOS_CIIMGEFF_FIN_MASK			(7 << 26)
#define EXYNOS_CIIMGEFF_PAT_CBCR_MASK		((0xff < 13) | (0xff < 0))
#define EXYNOS_CIIMGEFF_PAT_CBCR_MASK		((0xff << 13) | (0xff << 0))

/* Real input DMA size register */
#define EXYNOS_CIREAL_ISIZE_AUTOLOAD_ENABLE	(1 << 31)