Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

This function is marked __init, so it can't possibly need to be
exported to modules. Remove the marking.

Cc: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>

-1
-1
drivers/clk/clk-fixed-factor.c
··· 196 196 { 197 197 _of_fixed_factor_clk_setup(node); 198 198 } 199 - EXPORT_SYMBOL_GPL(of_fixed_factor_clk_setup); 200 199 CLK_OF_DECLARE(fixed_factor_clk, "fixed-factor-clock", 201 200 of_fixed_factor_clk_setup); 202 201