aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/control.c
diff options
context:
space:
mode:
authorTero Kristo <t-kristo@ti.com>2015-02-06 16:00:32 +0200
committerTero Kristo <t-kristo@ti.com>2015-03-31 21:26:55 +0300
commit80cbb224b789d256ad5cb36b0af3e5c04ed46bca (patch)
tree6ef237dd27648da426c57a25344b597ff3c03e1f /arch/arm/mach-omap2/control.c
parentARM: OMAP4+: PRM: get rid of cpu_is_omap44xx calls from interrupt init (diff)
downloadlinux-dev-80cbb224b789d256ad5cb36b0af3e5c04ed46bca.tar.xz
linux-dev-80cbb224b789d256ad5cb36b0af3e5c04ed46bca.zip
ARM: OMAP2+: clock: add low-level support for regmap
Some of the TI clock providers will be converted to use syscon, thus low-level regmap support is needed for the clock drivers also. This patch adds this support, which can be enabled for individual drivers in later patches. Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/control.c')
-rw-r--r--arch/arm/mach-omap2/control.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/control.c b/arch/arm/mach-omap2/control.c
index 21ff32c6001a..4b4094685087 100644
--- a/arch/arm/mach-omap2/control.c
+++ b/arch/arm/mach-omap2/control.c
@@ -676,7 +676,7 @@ int __init omap_control_init(void)
for_each_matching_node_and_match(np, omap_scrm_dt_match_table, &match) {
data = match->data;
- ret = omap2_clk_provider_init(np, data->index, data->mem);
+ ret = omap2_clk_provider_init(np, data->index, NULL, data->mem);
if (ret)
return ret;
}