From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnaud Patard (Rtp) Date: Fri, 25 Sep 2020 20:36:58 +0200 Subject: [patch 4/8] RFC: drivers/video/rockchip/rk_edp.c: Change clock rate References: <20200925183654.723338620@rtp-net.org> Message-ID: <20200925183856.497901419@rtp-net.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The current code is setting the clock rate to 192000000, but due to the current device-tree configuration and linux code, it should rather be 100000000. Signed-off-by: Arnaud Patard Index: u-boot/drivers/video/rockchip/rk_edp.c =================================================================== --- u-boot.orig/drivers/video/rockchip/rk_edp.c +++ u-boot/drivers/video/rockchip/rk_edp.c @@ -1075,7 +1078,7 @@ static int rk_edp_probe(struct udevice * } ret = clk_get_by_index(uc_plat->src_dev, 0, &clk); if (ret >= 0) { - ret = clk_set_rate(&clk, 192000000); + ret = clk_set_rate(&clk, 100000000); clk_free(&clk); } if (ret < 0) {