clk: ccf: mux: fix typo
authorDario Binacchi <dariobin@libero.it>
Sat, 2 May 2020 15:58:32 +0000 (17:58 +0200)
committerLukasz Majewski <lukma@denx.de>
Mon, 24 Aug 2020 09:03:26 +0000 (11:03 +0200)
Close the opening bracket.

Signed-off-by: Dario Binacchi <dariobin@libero.it>
drivers/clk/clk-mux.c

index 69f1e9c..978f3a8 100644 (file)
@@ -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)]);