aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorJonas Gorski <jonas.gorski@gmail.com>2019-04-18 07:12:11 -0400
committerStephen Boyd <sboyd@kernel.org>2019-04-23 13:57:49 -0400
commit5834fd75e6236605da8c439a64eaa33f3c8d02fe (patch)
tree2ff613d31f59604f24eb0734aa4f391d727a34af /include/linux
parentf122498703d65c7dc8a4a15abed6405cc256269e (diff)
clk: core: replace clk_{readl,writel} with {readl,writel}
Now that clk_{readl,writel} is just an alias for {readl,writel}, we can switch all users of clk_* to use the accessors directly and remove the helpers. Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com> [sboyd@kernel.org: Also convert renesas file so that this can be compile independently] Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/clk-provider.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index c767a9321f15..523318a60601 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -1013,21 +1013,6 @@ static inline int of_clk_detect_critical(struct device_node *np, int index,
1013} 1013}
1014#endif /* CONFIG_OF */ 1014#endif /* CONFIG_OF */
1015 1015
1016/*
1017 * wrap access to peripherals in accessor routines
1018 * for improved portability across platforms
1019 */
1020
1021static inline u32 clk_readl(u32 __iomem *reg)
1022{
1023 return readl(reg);
1024}
1025
1026static inline void clk_writel(u32 val, u32 __iomem *reg)
1027{
1028 writel(val, reg);
1029}
1030
1031void clk_gate_restore_context(struct clk_hw *hw); 1016void clk_gate_restore_context(struct clk_hw *hw);
1032 1017
1033#endif /* CONFIG_COMMON_CLK */ 1018#endif /* CONFIG_COMMON_CLK */