From patchwork Sat May 2 15:58:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dario Binacchi X-Patchwork-Id: 244807 List-Id: U-Boot discussion From: dariobin at libero.it (Dario Binacchi) Date: Sat, 2 May 2020 17:58:32 +0200 Subject: [PATCH 2/4] clk: ccf: mux: fix typo In-Reply-To: <20200502155834.27481-1-dariobin@libero.it> References: <20200502155834.27481-1-dariobin@libero.it> Message-ID: <20200502155834.27481-3-dariobin@libero.it> Close the opening bracket. Signed-off-by: Dario Binacchi --- drivers/clk/clk-mux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/clk-mux.c b/drivers/clk/clk-mux.c index 9511a80fe3..6264b63900 100644 --- a/drivers/clk/clk-mux.c +++ b/drivers/clk/clk-mux.c @@ -193,7 +193,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)]);