diff options
author | Inki Dae <inki.dae@samsung.com> | 2016-04-12 09:59:11 +0900 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2016-04-30 11:34:14 +0900 |
commit | b5bf0f1ea3658254bd72ef64abc97786e8a32255 (patch) | |
tree | 8db04dceb6027a1dad5fde428fe767a74c9a916f /include/video/exynos5433_decon.h | |
parent | 9ac26de835b9c1865837bce1f4fb837b2a19532e (diff) |
drm/exynos: clean up register definions for fimd and decon
This patch removes suffixes from I80 relevant register definitions,
which are misleading.
This is based on top of below patch set,
http://www.spinics.net/lists/dri-devel/msg104057.html
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'include/video/exynos5433_decon.h')
-rw-r--r-- | include/video/exynos5433_decon.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/video/exynos5433_decon.h b/include/video/exynos5433_decon.h index c1c1ca18abc0..0098a522d9f4 100644 --- a/include/video/exynos5433_decon.h +++ b/include/video/exynos5433_decon.h @@ -179,9 +179,9 @@ #define TRIGCON_TRIGMODE_W1BUF (1 << 10) #define TRIGCON_SWTRIGCMD_W0BUF (1 << 6) #define TRIGCON_TRIGMODE_W0BUF (1 << 5) -#define TRIGCON_HWTRIGMASK_I80_RGB (1 << 4) -#define TRIGCON_HWTRIGEN_I80_RGB (1 << 3) -#define TRIGCON_HWTRIG_INV_I80_RGB (1 << 2) +#define TRIGCON_HWTRIGMASK (1 << 4) +#define TRIGCON_HWTRIGEN (1 << 3) +#define TRIGCON_HWTRIG_INV (1 << 2) #define TRIGCON_SWTRIGCMD (1 << 1) #define TRIGCON_SWTRIGEN (1 << 0) |