diff options
author | Dario Binacchi <dariobin@libero.it> | 2020-05-02 17:58:32 +0200 |
---|---|---|
committer | Lukasz Majewski <lukma@denx.de> | 2020-08-24 11:03:26 +0200 |
commit | 40559d277481a47abc8e42f287fd67a19e9592d9 (patch) | |
tree | 61ad23ebb539af8a276d60b05c39818ac4ff8409 | |
parent | 76eaa2d0ed655da19fc1ea00cab054e19be33ecc (diff) | |
download | u-boot-40559d277481a47abc8e42f287fd67a19e9592d9.tar.gz u-boot-40559d277481a47abc8e42f287fd67a19e9592d9.tar.xz u-boot-40559d277481a47abc8e42f287fd67a19e9592d9.zip |
clk: ccf: mux: fix typo
Close the opening bracket.
Signed-off-by: Dario Binacchi <dariobin@libero.it>
-rw-r--r-- | drivers/clk/clk-mux.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)]); |