Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d336e9a7 authored by Stephen Boyd's avatar Stephen Boyd
Browse files

clk: fixed-rate: Remove export symbol on setup function



This function is only called by builtin code, but we always
exported it and had marked it as __init before commit
e4eda8e0 (clk: remove exported function from __init section,
2013-01-06) removed that marking. Given that it isn't used by
modules, lets unexport it and add back __init.

Cc: Denis Efremov <yefremov.denis@gmail.com>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 1caadde4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -190,11 +190,10 @@ static struct clk *_of_fixed_clk_setup(struct device_node *node)
/**
 * of_fixed_clk_setup() - Setup function for simple fixed rate clock
 */
void of_fixed_clk_setup(struct device_node *node)
void __init of_fixed_clk_setup(struct device_node *node)
{
	_of_fixed_clk_setup(node);
}
EXPORT_SYMBOL_GPL(of_fixed_clk_setup);
CLK_OF_DECLARE(fixed_clk, "fixed-clock", of_fixed_clk_setup);

static int of_fixed_clk_remove(struct platform_device *pdev)