clk: tegra: Do not return 0 on failure
authorNicolin Chen <nicoleotsuka@gmail.com>
Thu, 29 Oct 2020 00:48:20 +0000 (17:48 -0700)
committerThierry Reding <treding@nvidia.com>
Fri, 20 Nov 2020 16:19:46 +0000 (17:19 +0100)
commit6160aca443148416994c022a35c77daeba948ea6
treeb3a9450ab0369f2901aa17e19200bbaa0a3362f9
parent3650b228f83adda7e5ee532e2b90429c03f7b9ec
clk: tegra: Do not return 0 on failure

Return values from read_dt_param() will be either TRUE (1) or
FALSE (0), while dfll_fetch_pwm_params() returns 0 on success
or an ERR code on failure.

So this patch fixes the bug of returning 0 on failure.

Fixes: 36541f0499fe ("clk: tegra: dfll: support PWM regulator control")
Cc: <stable@vger.kernel.org>
Signed-off-by: Nicolin Chen <nicoleotsuka@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/clk/tegra/clk-dfll.c