clk: rockchip: rk3568: fix print error log

The log is "Fail to set the ACLK_BUS clock"

Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
Change-Id: Ie22e5139e1446ae751d1e64729c7a0b4cdbac69e
This commit is contained in:
Jason Zhu 2020-12-22 12:10:45 +08:00
parent 3c13acb0a2
commit 98637248d5
1 changed files with 1 additions and 1 deletions

View File

@ -2805,7 +2805,7 @@ static void rk3568_clk_init(struct rk3568_clk_priv *priv)
#ifdef CONFIG_SPL_BUILD
ret = rk3568_bus_set_clk(priv, ACLK_BUS, 150000000);
if (ret)
if (ret < 0)
printf("Fail to set the ACLK_BUS clock.\n");
#endif