clk: rockchip: fix of spelling mistake on unsuccessful in pll clock type

fix spelling mistake, unsucessful -> unsuccessful

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
This commit is contained in:
Colin Ian King 2016-04-24 23:44:13 +01:00 committed by Heiko Stuebner
parent 03ae174786
commit b8199ff31f
1 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,7 @@ static int rockchip_rk3036_pll_set_params(struct rockchip_clk_pll *pll,
/* wait for the pll to lock */ /* wait for the pll to lock */
ret = rockchip_pll_wait_lock(pll); ret = rockchip_pll_wait_lock(pll);
if (ret) { if (ret) {
pr_warn("%s: pll update unsucessful, trying to restore old params\n", pr_warn("%s: pll update unsuccessful, trying to restore old params\n",
__func__); __func__);
rockchip_rk3036_pll_set_params(pll, &cur); rockchip_rk3036_pll_set_params(pll, &cur);
} }
@ -475,7 +475,7 @@ static int rockchip_rk3066_pll_set_params(struct rockchip_clk_pll *pll,
/* wait for the pll to lock */ /* wait for the pll to lock */
ret = rockchip_pll_wait_lock(pll); ret = rockchip_pll_wait_lock(pll);
if (ret) { if (ret) {
pr_warn("%s: pll update unsucessful, trying to restore old params\n", pr_warn("%s: pll update unsuccessful, trying to restore old params\n",
__func__); __func__);
rockchip_rk3066_pll_set_params(pll, &cur); rockchip_rk3066_pll_set_params(pll, &cur);
} }