mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
rockchip: video: mipi: Do not write to the version register
There was a copy and paste error where the data enable setting was written to the version register. Signed-off-by: Richard Röjfors <richard@puffinpack.se> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
This commit is contained in:
parent
6c69ed19f9
commit
d57720a5fc
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ int rk_mipi_dsi_enable(struct udevice *dev,
|
|||
rk_mipi_dsi_write(regs, VSYNC_ACTIVE_LOW, val);
|
||||
|
||||
val = (timing->flags & DISPLAY_FLAGS_DE_LOW) ? 1 : 0;
|
||||
rk_mipi_dsi_write(regs, DISPLAY_FLAGS_DE_LOW, val);
|
||||
rk_mipi_dsi_write(regs, DATAEN_ACTIVE_LOW, val);
|
||||
|
||||
val = (timing->flags & DISPLAY_FLAGS_PIXDATA_NEGEDGE) ? 1 : 0;
|
||||
rk_mipi_dsi_write(regs, COLORM_ACTIVE_LOW, val);
|
||||
|
|
Loading…
Add table
Reference in a new issue