diff options
author | Tero Kristo <t-kristo@ti.com> | 2015-02-06 09:00:32 -0500 |
---|---|---|
committer | Tero Kristo <t-kristo@ti.com> | 2015-03-31 14:26:55 -0400 |
commit | 80cbb224b789d256ad5cb36b0af3e5c04ed46bca (patch) | |
tree | 6ef237dd27648da426c57a25344b597ff3c03e1f /arch/arm/mach-omap2/prm_common.c | |
parent | 219595b6ee139d883b98a9a32efbe2970802200a (diff) |
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/prm_common.c')
-rw-r--r-- | arch/arm/mach-omap2/prm_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/prm_common.c b/arch/arm/mach-omap2/prm_common.c index 6832a31e9a70..7add7994dbfc 100644 --- a/arch/arm/mach-omap2/prm_common.c +++ b/arch/arm/mach-omap2/prm_common.c | |||
@@ -798,7 +798,7 @@ int __init omap_prcm_init(void) | |||
798 | for_each_matching_node_and_match(np, omap_prcm_dt_match_table, &match) { | 798 | for_each_matching_node_and_match(np, omap_prcm_dt_match_table, &match) { |
799 | data = match->data; | 799 | data = match->data; |
800 | 800 | ||
801 | ret = omap2_clk_provider_init(np, data->index, data->mem); | 801 | ret = omap2_clk_provider_init(np, data->index, NULL, data->mem); |
802 | if (ret) | 802 | if (ret) |
803 | return ret; | 803 | return ret; |
804 | } | 804 | } |