diff options
| -rw-r--r-- | arch/arm/mach-uniphier/sg-regs.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/arch/arm/mach-uniphier/sg-regs.h b/arch/arm/mach-uniphier/sg-regs.h index 2cdc2db26ef..4044245ee18 100644 --- a/arch/arm/mach-uniphier/sg-regs.h +++ b/arch/arm/mach-uniphier/sg-regs.h @@ -126,6 +126,14 @@ static inline void sg_set_iectrl(unsigned pin)  	writel(tmp, reg);  } +static inline void sg_set_iectrl_range(unsigned min, unsigned max) +{ +	int i; + +	for (i = min; i <= max; i++) +		sg_set_iectrl(i); +} +  #endif /* __ASSEMBLY__ */  #endif /* ARCH_SG_REGS_H */ | 
