diff options
Diffstat (limited to 'arch/arm/mach-shmobile/pm-sh7372.c')
| -rw-r--r-- | arch/arm/mach-shmobile/pm-sh7372.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mach-shmobile/pm-sh7372.c b/arch/arm/mach-shmobile/pm-sh7372.c index a0826a48dd0..dec9293bb90 100644 --- a/arch/arm/mach-shmobile/pm-sh7372.c +++ b/arch/arm/mach-shmobile/pm-sh7372.c @@ -410,11 +410,9 @@ static int sh7372_enter_a4s(struct cpuidle_device *dev,  static struct cpuidle_driver sh7372_cpuidle_driver = {  	.name			= "sh7372_cpuidle",  	.owner			= THIS_MODULE, -	.en_core_tk_irqen	= 1,  	.state_count		= 5,  	.safe_state_index	= 0, /* C1 */  	.states[0] = ARM_CPUIDLE_WFI_STATE, -	.states[0].enter = shmobile_enter_wfi,  	.states[1] = {  		.name = "C2",  		.desc = "Core Standby Mode", @@ -450,12 +448,12 @@ static struct cpuidle_driver sh7372_cpuidle_driver = {  	},  }; -static void sh7372_cpuidle_init(void) +static void __init sh7372_cpuidle_init(void)  {  	shmobile_cpuidle_set_driver(&sh7372_cpuidle_driver);  }  #else -static void sh7372_cpuidle_init(void) {} +static void __init sh7372_cpuidle_init(void) {}  #endif  #ifdef CONFIG_SUSPEND  |