diff options
author | Simon Glass | 2016-02-21 21:09:00 -0700 |
---|---|---|
committer | Minkyu Kang | 2016-05-25 13:25:18 +0900 |
commit | 8b449a6639c6bee1a97c0eba2ab142a7c471d9b1 (patch) | |
tree | 43bdc0b334dac000427efcd109c900807bbf96ac /include/exynos_lcd.h | |
parent | 21f8f9bb084e276c490454c401fc23dc42c536bc (diff) |
exynos: video: Rename variables for driver model
Use 'priv' for a private pointer and 'regs' for a register pointer.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'include/exynos_lcd.h')
-rw-r--r-- | include/exynos_lcd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exynos_lcd.h b/include/exynos_lcd.h index 0aa0fc71a3b..ab92ffb72ad 100644 --- a/include/exynos_lcd.h +++ b/include/exynos_lcd.h @@ -75,7 +75,7 @@ typedef struct vidinfo { unsigned int sclk_div; unsigned int dual_lcd_enabled; - struct exynos_fb *fimd_ctrl; + struct exynos_fb *reg; struct exynos_platform_mipi_dsim *dsim_platform_data_dt; } vidinfo_t; |