diff options
author | Tony Lindgren <tony@atomide.com> | 2017-12-11 07:46:40 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2017-12-11 07:46:40 -0800 |
commit | fdf3632938a646c13f7407f2f8c33ff81eed9c76 (patch) | |
tree | 9f8c982a2e40af006cffd2daad05eba4deedc04a /arch/arm/mach-omap2/cm_common.c | |
parent | 60af58cde4f27190c19dba7348e48bb03850eb91 (diff) | |
parent | 71d50393ab0186b40860d31468a1b701c97339f6 (diff) |
Merge branch '4.15-rc1-clkctrl-mach-omap2' of https://github.com/t-kristo/linux-pm into omap-for-v4.16/soc
Diffstat (limited to 'arch/arm/mach-omap2/cm_common.c')
-rw-r--r-- | arch/arm/mach-omap2/cm_common.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/cm_common.c b/arch/arm/mach-omap2/cm_common.c index de9cdce27b83..7e9c85e37454 100644 --- a/arch/arm/mach-omap2/cm_common.c +++ b/arch/arm/mach-omap2/cm_common.c @@ -175,6 +175,16 @@ int omap_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs) return 0; } +u32 omap_cm_xlate_clkctrl(u8 part, u16 inst, u16 clkctrl_offs) +{ + if (!cm_ll_data->xlate_clkctrl) { + WARN_ONCE(1, "cm: %s: no low-level function defined\n", + __func__); + return 0; + } + return cm_ll_data->xlate_clkctrl(part, inst, clkctrl_offs); +} + /** * cm_register - register per-SoC low-level data with the CM * @cld: low-level per-SoC OMAP CM data & function pointers to register |