diff options
author | Tony Lindgren <tony@atomide.com> | 2019-03-22 17:49:30 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2019-04-01 17:38:38 +0300 |
commit | 386cb76681ca6248878c7b76d3d5aa0e8b8a07bb (patch) | |
tree | 73aadd61b4c5deb9a927c684b9d25a00c59dbaa0 /arch/arm/mach-omap2/omap_hwmod.c | |
parent | aaa29bb01cc4bf5a87dbdb219efba3b09f259d8e (diff) | |
download | linux-386cb76681ca6248878c7b76d3d5aa0e8b8a07bb.tar.xz |
bus: ti-sysc: Handle missed no-idle property in addition to no-idle-on-init
We have ti,no-idle in use in addition to ti,no-idle-on-init but we're
missing handling for it in the ti-sysc interconnect target module driver.
Let's also group the idle defines together and update the binding
documentation for it.
Cc: devicetree@vger.kernel.org
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod.c')
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index 9170fbfb7c59..a985844dbe39 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c @@ -3675,6 +3675,8 @@ int omap_hwmod_init_module(struct device *dev, if (error) return error; + if (data->cfg->quirks & SYSC_QUIRK_NO_IDLE) + oh->flags |= HWMOD_NO_IDLE; if (data->cfg->quirks & SYSC_QUIRK_NO_IDLE_ON_INIT) oh->flags |= HWMOD_INIT_NO_IDLE; if (data->cfg->quirks & SYSC_QUIRK_NO_RESET_ON_INIT) |