diff options
| author | Paul Walmsley <paul@pwsan.com> | 2012-09-23 17:28:22 -0600 | 
|---|---|---|
| committer | Paul Walmsley <paul@pwsan.com> | 2012-09-23 17:28:22 -0600 | 
| commit | 53cce97c3922fe4c08d2474e4f7b1968e79d7219 (patch) | |
| tree | dca833d92c1586cf19c6185b3cc0ab8cb1873c0a /arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
| parent | 1b024d2f60bdceefdc4a03855eb4bd241a403828 (diff) | |
| download | olio-linux-3.10-53cce97c3922fe4c08d2474e4f7b1968e79d7219.tar.xz olio-linux-3.10-53cce97c3922fe4c08d2474e4f7b1968e79d7219.zip  | |
ARM: OMAP4: hwmod data: add missing HWMOD_NO_IDLEST flags to some PRCM IP blocks
Some struct omap_hwmod records belonging to PRCM IP blocks are missing
HWMOD_NO_IDLEST flags; add them.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: BenoƮt Cousson <b-cousson@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod_44xx_data.c')
| -rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c index 728e3e7e2c3..5b3c6181a71 100644 --- a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c @@ -2571,6 +2571,7 @@ static struct omap_hwmod omap44xx_prcm_mpu_hwmod = {  	.name		= "prcm_mpu",  	.class		= &omap44xx_prcm_hwmod_class,  	.clkdm_name	= "l4_wkup_clkdm", +	.flags		= HWMOD_NO_IDLEST,  	.prcm = {  		.omap4 = {  			.flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, @@ -2582,6 +2583,7 @@ static struct omap_hwmod omap44xx_prcm_mpu_hwmod = {  static struct omap_hwmod omap44xx_cm_core_aon_hwmod = {  	.name		= "cm_core_aon",  	.class		= &omap44xx_prcm_hwmod_class, +	.flags		= HWMOD_NO_IDLEST,  	.prcm = {  		.omap4 = {  			.flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, @@ -2593,6 +2595,7 @@ static struct omap_hwmod omap44xx_cm_core_aon_hwmod = {  static struct omap_hwmod omap44xx_cm_core_hwmod = {  	.name		= "cm_core",  	.class		= &omap44xx_prcm_hwmod_class, +	.flags		= HWMOD_NO_IDLEST,  	.prcm = {  		.omap4 = {  			.flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT,  |