diff options
author | Pankaj Dubey <pankaj.dubey@samsung.com> | 2014-11-07 08:30:33 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2014-11-07 08:30:33 +0900 |
commit | d4c6c6cf8b42d3e516703c8dc48714fed31859b8 (patch) | |
tree | dfc67a83fb830653737bdba8e0b5c7638c65730f | |
parent | f114040e3ea6e07372334ade75d1ee0775c355e1 (diff) | |
download | linux-d4c6c6cf8b42d3e516703c8dc48714fed31859b8.tar.gz linux-d4c6c6cf8b42d3e516703c8dc48714fed31859b8.tar.bz2 linux-d4c6c6cf8b42d3e516703c8dc48714fed31859b8.zip |
ARM: EXYNOS: fix typo in static struct name "exynos5_list_diable_wfi_wfe"
This patch fixes a typo in struct named as "exynos5_list_diable_wfi_wfe"
by making it "exynos5_list_disable_wfi_wfe" which is more meaningful.
Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
-rw-r--r-- | arch/arm/mach-exynos/pmu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-exynos/pmu.c b/arch/arm/mach-exynos/pmu.c index ff9d23f0a7d9..d8fa0337db73 100644 --- a/arch/arm/mach-exynos/pmu.c +++ b/arch/arm/mach-exynos/pmu.c @@ -329,7 +329,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, @@ -360,11 +360,11 @@ static void exynos5_init_pmu(void) /* * 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]); } } |