From: Cédric Le Goater Date: Mon, 29 Oct 2018 06:06:37 +0000 (+0100) Subject: aspeed: ast2500: fix missing break in D2PLL clock enablement X-Git-Tag: v2025.01-rc5-pxa1908~3279^2^2~14 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=64ae8234175a6246ec0db709559ada88a0f6787a;p=u-boot.git aspeed: ast2500: fix missing break in D2PLL clock enablement Signed-off-by: Cédric Le Goater Reviewed-by: Joel Stanley Reviewed-by: Simon Glass Acked-by: Joe Hershberger --- diff --git a/drivers/clk/aspeed/clk_ast2500.c b/drivers/clk/aspeed/clk_ast2500.c index 526470051c..2182320f60 100644 --- a/drivers/clk/aspeed/clk_ast2500.c +++ b/drivers/clk/aspeed/clk_ast2500.c @@ -411,6 +411,7 @@ static int ast2500_clk_enable(struct clk *clk) break; case PLL_D2PLL: ast2500_configure_d2pll(priv->scu, D2PLL_DEFAULT_RATE); + break; default: return -ENOENT; }