From: Masahiro Yamada Date: Wed, 19 Oct 2016 07:26:49 +0000 (+0900) Subject: ARM: uniphier: remove unneeded mdelay() in PLL setting function X-Git-Tag: v2025.01-rc5-pxa1908~8248^2~11 X-Git-Url: http://git.dujemihanovic.xyz/html/static/%7B%7B%20%24.Site.BaseURL%20%7D%7Dposts/index.xml?a=commitdiff_plain;h=dd39ee8a545132431b6441135c707e2c49317f8b;p=u-boot.git ARM: uniphier: remove unneeded mdelay() in PLL setting function This delay is already cared by the callers of this function. Signed-off-by: Masahiro Yamada --- diff --git a/arch/arm/mach-uniphier/clk/pll-base-ld20.c b/arch/arm/mach-uniphier/clk/pll-base-ld20.c index a5027d2079..caa631d9f7 100644 --- a/arch/arm/mach-uniphier/clk/pll-base-ld20.c +++ b/arch/arm/mach-uniphier/clk/pll-base-ld20.c @@ -67,8 +67,6 @@ int uniphier_ld20_sscpll_ssc_en(unsigned long reg_base) if (!base) return -ENOMEM; - mdelay(1); - tmp = readl(base); /* SSCPLLCTRL */ tmp |= SC_PLLCTRL_SSC_EN; writel(tmp, base);