clk: imx: Fix the build break when clk-imx8ulp build as module
authorJacky Bai <ping.bai@nxp.com>
Fri, 17 Sep 2021 06:16:29 +0000 (14:16 +0800)
committerAbel Vesa <abel.vesa@nxp.com>
Fri, 1 Oct 2021 07:15:42 +0000 (10:15 +0300)
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 <ping.bai@nxp.com>
Reviewed-by: Abel Vesa <abel.vesa@nxp.com>
Link: https://lore.kernel.org/r/20210917061629.3798360-1-ping.bai@nxp.com
Signed-off-by: Abel Vesa <abel.vesa@nxp.com>
drivers/clk/imx/clk-composite-7ulp.c
drivers/clk/imx/clk-pfdv2.c
drivers/clk/imx/clk-pllv4.c

index 89106de16a3ff3bc6fac151ccee4e1530b5c935c..4eedd45dbaa832bdece3f3714a02271a959a32a4 100644 (file)
@@ -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);
index 42505669cdfbcbf7bf8013ca45d2c48d0c42d898..6ca53a960eb7376fb9e91e2e090afff5fb258f34 100644 (file)
@@ -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);
index 3c750ccbee251393b56a77fa3086632d90ceeb8a..6e7e34571fc8db0e7fd62801b4289edab0a9b4d6 100644 (file)
@@ -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);