From: Dario Binacchi <dariobin@libero.it>
Date: Sat, 2 May 2020 15:58:32 +0000 (+0200)
Subject: clk: ccf: mux: fix typo
X-Git-Tag: v2025.01-rc5-pxa1908~2244^2~5
X-Git-Url: http://git.dujemihanovic.xyz/%22/icons/right.gif/static/%7B%7B%20%24image.RelPermalink%20%7D%7D?a=commitdiff_plain;h=40559d277481a47abc8e42f287fd67a19e9592d9;p=u-boot.git

clk: ccf: mux: fix typo

Close the opening bracket.

Signed-off-by: Dario Binacchi <dariobin@libero.it>
---

diff --git a/drivers/clk/clk-mux.c b/drivers/clk/clk-mux.c
index 69f1e9cc99..978f3a8a14 100644
--- a/drivers/clk/clk-mux.c
+++ b/drivers/clk/clk-mux.c
@@ -191,7 +191,7 @@ struct clk *clk_hw_register_mux_table(struct device *dev, const char *name,
 	 * Read the current mux setup - so we assign correct parent.
 	 *
 	 * Changing parent would require changing internals of udevice struct
-	 * for the corresponding clock (to do that define .set_parent() method.
+	 * for the corresponding clock (to do that define .set_parent() method).
 	 */
 	ret = clk_register(clk, UBOOT_DM_CLK_CCF_MUX, name,
 			   parent_names[clk_mux_get_parent(clk)]);