diff options
Diffstat (limited to 'arch/arm/mach-at91/pm.c')
| -rw-r--r-- | arch/arm/mach-at91/pm.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c index 2c2d86505a5..5315f05896e 100644 --- a/arch/arm/mach-at91/pm.c +++ b/arch/arm/mach-at91/pm.c @@ -153,7 +153,9 @@ static int at91_pm_verify_clocks(void)  		}  	} -#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS +	if (!IS_ENABLED(CONFIG_AT91_PROGRAMMABLE_CLOCKS)) +		return 1; +  	/* PCK0..PCK3 must be disabled, or configured to use clk32k */  	for (i = 0; i < 4; i++) {  		u32 css; @@ -167,7 +169,6 @@ static int at91_pm_verify_clocks(void)  			return 0;  		}  	} -#endif  	return 1;  }  |