|
@@ -70,9 +70,8 @@ static void rcar_du_lvdsenc_start_gen2(struct rcar_du_lvdsenc *lvds,
|
|
|
|
|
|
/* Turn all the channels on. */
|
|
|
rcar_lvds_write(lvds, LVDCR1,
|
|
|
- LVDCR1_CHSTBY_GEN2(3) | LVDCR1_CHSTBY_GEN2(2) |
|
|
|
- LVDCR1_CHSTBY_GEN2(1) | LVDCR1_CHSTBY_GEN2(0) |
|
|
|
- LVDCR1_CLKSTBY_GEN2);
|
|
|
+ LVDCR1_CHSTBY(3) | LVDCR1_CHSTBY(2) |
|
|
|
+ LVDCR1_CHSTBY(1) | LVDCR1_CHSTBY(0) | LVDCR1_CLKSTBY);
|
|
|
|
|
|
/*
|
|
|
* Turn the PLL on, wait for the startup delay, and turn the output
|
|
@@ -109,9 +108,8 @@ static void rcar_du_lvdsenc_start_gen3(struct rcar_du_lvdsenc *lvds,
|
|
|
|
|
|
/* Turn all the channels on. */
|
|
|
rcar_lvds_write(lvds, LVDCR1,
|
|
|
- LVDCR1_CHSTBY_GEN3(3) | LVDCR1_CHSTBY_GEN3(2) |
|
|
|
- LVDCR1_CHSTBY_GEN3(1) | LVDCR1_CHSTBY_GEN3(0) |
|
|
|
- LVDCR1_CLKSTBY_GEN3);
|
|
|
+ LVDCR1_CHSTBY(3) | LVDCR1_CHSTBY(2) |
|
|
|
+ LVDCR1_CHSTBY(1) | LVDCR1_CHSTBY(0) | LVDCR1_CLKSTBY);
|
|
|
|
|
|
/*
|
|
|
* Turn the PLL on, set it to LVDS normal mode, wait for the startup
|