Commit 59fcdce4 authored by Stephen Boyd's avatar Stephen Boyd
Browse files

clk: Remove ifdef for COMMON_CLK in clk-provider.h



This ifdef has been there since the beginning of this file, but it
doesn't really seem to serve any purpose besides obfuscating the struct
definitions and #defines here from compilation units that include it.
Let's always expose these function prototypes and struct definitions so
that code can inspect clk providers without needing to have
CONFIG_COMMON_CLK enabled.

Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent a188339c
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -9,8 +9,6 @@
#include <linux/of.h>
#include <linux/of_clk.h>

#ifdef CONFIG_COMMON_CLK

/*
 * flags used across common struct clk.  these flags should only affect the
 * top-level framework.  custom flags for dealing with hardware specifics
@@ -1019,5 +1017,4 @@ static inline int of_clk_detect_critical(struct device_node *np, int index,

void clk_gate_restore_context(struct clk_hw *hw);

#endif /* CONFIG_COMMON_CLK */
#endif /* CLK_PROVIDER_H */