From: Bjorn Andersson Date: Sat, 23 Sep 2017 05:00:29 +0000 (-0700) Subject: clk: Export clk_bulk_prepare() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9792bf5ad5e30b207274ccbb459a89eab6033b46;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git clk: Export clk_bulk_prepare() Allow clk_bulk_prepare() to be referenced by kernel modules by adding the missing EXPORT_SYMBOL_GPL(). Fixes: 266e4e9d9150 ("clk: add clk_bulk_get accessories") Reported-by: Ulf Hansson Signed-off-by: Bjorn Andersson Reviewed-by: Ulf Hansson Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/clk-bulk.c b/drivers/clk/clk-bulk.c index c834f5abfc49..4c10456f8a32 100644 --- a/drivers/clk/clk-bulk.c +++ b/drivers/clk/clk-bulk.c @@ -105,6 +105,7 @@ err: return ret; } +EXPORT_SYMBOL_GPL(clk_bulk_prepare); #endif /* CONFIG_HAVE_CLK_PREPARE */