From: Jacky Bai Date: Fri, 17 Sep 2021 06:16:29 +0000 (+0800) Subject: clk: imx: Fix the build break when clk-imx8ulp build as module X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d4e6c054fa953d06025b606b26939468df477fbf;p=linux.git clk: imx: Fix the build break when clk-imx8ulp build as module Export the necessary symbols to fix the build break when clk-imx8ulp build as module Fixes: c43a801a5789 ("clk: imx: Add clock driver for imx8ulp") Signed-off-by: Jacky Bai Reviewed-by: Abel Vesa Link: https://lore.kernel.org/r/20210917061629.3798360-1-ping.bai@nxp.com Signed-off-by: Abel Vesa --- diff --git a/drivers/clk/imx/clk-composite-7ulp.c b/drivers/clk/imx/clk-composite-7ulp.c index 89106de16a3ff..4eedd45dbaa83 100644 --- a/drivers/clk/imx/clk-composite-7ulp.c +++ b/drivers/clk/imx/clk-composite-7ulp.c @@ -166,3 +166,4 @@ struct clk_hw *imx8ulp_clk_hw_composite(const char *name, const char * const *pa return imx_ulp_clk_hw_composite(name, parent_names, num_parents, mux_present, rate_present, gate_present, reg, has_swrst); } +EXPORT_SYMBOL_GPL(imx8ulp_clk_hw_composite); diff --git a/drivers/clk/imx/clk-pfdv2.c b/drivers/clk/imx/clk-pfdv2.c index 42505669cdfbc..6ca53a960eb73 100644 --- a/drivers/clk/imx/clk-pfdv2.c +++ b/drivers/clk/imx/clk-pfdv2.c @@ -239,3 +239,4 @@ struct clk_hw *imx_clk_hw_pfdv2(enum imx_pfdv2_type type, const char *name, return hw; } +EXPORT_SYMBOL_GPL(imx_clk_hw_pfdv2); diff --git a/drivers/clk/imx/clk-pllv4.c b/drivers/clk/imx/clk-pllv4.c index 3c750ccbee251..6e7e34571fc8d 100644 --- a/drivers/clk/imx/clk-pllv4.c +++ b/drivers/clk/imx/clk-pllv4.c @@ -254,3 +254,4 @@ struct clk_hw *imx_clk_hw_pllv4(enum imx_pllv4_type type, const char *name, return hw; } +EXPORT_SYMBOL_GPL(imx_clk_hw_pllv4);