Message ID | 1415452601-13078-4-git-send-email-amit.daniel@samsung.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Amit, On 8 November 2014 18:46, Amit Daniel Kachhap <amit.daniel@samsung.com> wrote: > This patches changes the name of exynos5_list_diable_wfi_wfe to > exynos5_list_disable_wfi_wfe. > Same change I have posted earlier [1] and Kukjin has taken same in his for-next. 1: http://www.spinics.net/lists/arm-kernel/msg372742.html Thanks, Pankaj Dubey > Signed-off-by: Amit Daniel Kachhap <amit.daniel@samsung.com> > --- > drivers/soc/samsung/exynos-pmu.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/soc/samsung/exynos-pmu.c b/drivers/soc/samsung/exynos-pmu.c > index 35774e8..3832cda 100644 > --- a/drivers/soc/samsung/exynos-pmu.c > +++ b/drivers/soc/samsung/exynos-pmu.c > @@ -361,7 +361,7 @@ static unsigned int const exynos5_list_both_cnt_feed[] = { > EXYNOS5_TOP_PWR_SYSMEM_OPTION, > }; > > -static unsigned int const exynos5_list_diable_wfi_wfe[] = { > +static unsigned int const exynos5_list_disable_wfi_wfe[] = { > EXYNOS5_ARM_CORE1_OPTION, > EXYNOS5_FSYS_ARM_OPTION, > EXYNOS5_ISP_ARM_OPTION, > @@ -392,11 +392,11 @@ static void exynos5_powerdown_conf(enum sys_powerdown mode) > /* > * Disable WFI/WFE on XXX_OPTION > */ > - for (i = 0; i < ARRAY_SIZE(exynos5_list_diable_wfi_wfe); i++) { > - tmp = pmu_raw_readl(exynos5_list_diable_wfi_wfe[i]); > + for (i = 0; i < ARRAY_SIZE(exynos5_list_disable_wfi_wfe); i++) { > + tmp = pmu_raw_readl(exynos5_list_disable_wfi_wfe[i]); > tmp &= ~(EXYNOS5_OPTION_USE_STANDBYWFE | > EXYNOS5_OPTION_USE_STANDBYWFI); > - pmu_raw_writel(tmp, exynos5_list_diable_wfi_wfe[i]); > + pmu_raw_writel(tmp, exynos5_list_disable_wfi_wfe[i]); > } > } > > -- > 1.7.9.5 > > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
On Sat, Nov 8, 2014 at 9:26 PM, Pankaj Dubey <dubepankaj1980@gmail.com> wrote: > Hi Amit, > > > On 8 November 2014 18:46, Amit Daniel Kachhap <amit.daniel@samsung.com> wrote: >> This patches changes the name of exynos5_list_diable_wfi_wfe to >> exynos5_list_disable_wfi_wfe. >> > > Same change I have posted earlier [1] and Kukjin has taken same in his for-next. > > 1: http://www.spinics.net/lists/arm-kernel/msg372742.html ok but this patch is still not visible in linux-next. I will rebase my v3 patch series against Kukjin for-next > > Thanks, > Pankaj Dubey > > >> Signed-off-by: Amit Daniel Kachhap <amit.daniel@samsung.com> >> --- >> drivers/soc/samsung/exynos-pmu.c | 8 ++++---- >> 1 file changed, 4 insertions(+), 4 deletions(-) >> >> diff --git a/drivers/soc/samsung/exynos-pmu.c b/drivers/soc/samsung/exynos-pmu.c >> index 35774e8..3832cda 100644 >> --- a/drivers/soc/samsung/exynos-pmu.c >> +++ b/drivers/soc/samsung/exynos-pmu.c >> @@ -361,7 +361,7 @@ static unsigned int const exynos5_list_both_cnt_feed[] = { >> EXYNOS5_TOP_PWR_SYSMEM_OPTION, >> }; >> >> -static unsigned int const exynos5_list_diable_wfi_wfe[] = { >> +static unsigned int const exynos5_list_disable_wfi_wfe[] = { >> EXYNOS5_ARM_CORE1_OPTION, >> EXYNOS5_FSYS_ARM_OPTION, >> EXYNOS5_ISP_ARM_OPTION, >> @@ -392,11 +392,11 @@ static void exynos5_powerdown_conf(enum sys_powerdown mode) >> /* >> * Disable WFI/WFE on XXX_OPTION >> */ >> - for (i = 0; i < ARRAY_SIZE(exynos5_list_diable_wfi_wfe); i++) { >> - tmp = pmu_raw_readl(exynos5_list_diable_wfi_wfe[i]); >> + for (i = 0; i < ARRAY_SIZE(exynos5_list_disable_wfi_wfe); i++) { >> + tmp = pmu_raw_readl(exynos5_list_disable_wfi_wfe[i]); >> tmp &= ~(EXYNOS5_OPTION_USE_STANDBYWFE | >> EXYNOS5_OPTION_USE_STANDBYWFI); >> - pmu_raw_writel(tmp, exynos5_list_diable_wfi_wfe[i]); >> + pmu_raw_writel(tmp, exynos5_list_disable_wfi_wfe[i]); >> } >> } >> >> -- >> 1.7.9.5 >> >> >> _______________________________________________ >> linux-arm-kernel mailing list >> linux-arm-kernel@lists.infradead.org >> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel > -- > To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/soc/samsung/exynos-pmu.c b/drivers/soc/samsung/exynos-pmu.c index 35774e8..3832cda 100644 --- a/drivers/soc/samsung/exynos-pmu.c +++ b/drivers/soc/samsung/exynos-pmu.c @@ -361,7 +361,7 @@ static unsigned int const exynos5_list_both_cnt_feed[] = { EXYNOS5_TOP_PWR_SYSMEM_OPTION, }; -static unsigned int const exynos5_list_diable_wfi_wfe[] = { +static unsigned int const exynos5_list_disable_wfi_wfe[] = { EXYNOS5_ARM_CORE1_OPTION, EXYNOS5_FSYS_ARM_OPTION, EXYNOS5_ISP_ARM_OPTION, @@ -392,11 +392,11 @@ static void exynos5_powerdown_conf(enum sys_powerdown mode) /* * Disable WFI/WFE on XXX_OPTION */ - for (i = 0; i < ARRAY_SIZE(exynos5_list_diable_wfi_wfe); i++) { - tmp = pmu_raw_readl(exynos5_list_diable_wfi_wfe[i]); + for (i = 0; i < ARRAY_SIZE(exynos5_list_disable_wfi_wfe); i++) { + tmp = pmu_raw_readl(exynos5_list_disable_wfi_wfe[i]); tmp &= ~(EXYNOS5_OPTION_USE_STANDBYWFE | EXYNOS5_OPTION_USE_STANDBYWFI); - pmu_raw_writel(tmp, exynos5_list_diable_wfi_wfe[i]); + pmu_raw_writel(tmp, exynos5_list_disable_wfi_wfe[i]); } }
This patches changes the name of exynos5_list_diable_wfi_wfe to exynos5_list_disable_wfi_wfe. Signed-off-by: Amit Daniel Kachhap <amit.daniel@samsung.com> --- drivers/soc/samsung/exynos-pmu.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)