forked from Minki/linux
Samsung non-critical-fixes for v3.19
- fix typo in static struct name "exynos5_list_diable_wfi_wfe" : it should be "exynos5_list_disable_wfi_wfe" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJUbz+kAAoJEA0Cl+kVi2xq3ccP/iVQrPywUt3Y3XDz3X4dw5mg 5yKqTuOFunR1iDzeCxLPs9AF71sUzU+3vV6co/mIvvy9Sa8XtRnKeLms7j+0Bumx dUw5cOQ/flU9cWWpU9R8mXV/FUFpu9+Mt3U5z2kRa6KFxzFacfCt2H54w73vKwrf 2TJNrJcSTS2ziklN+gxRYekmbnjuy5Y3Aq+pjQ/0w8emgzyn1EEcG1t6QDGwsqfe MeiIUnkN9xoZyVEpjuzlKn6LwhRK9kYxEXSlXAObaTLfhjSV2MrE3oO516msUH6A EUFBa1x9jTh7b6S0w9T91wgOuphikpPZ+d18m1C3YojfKxL3n0xwIOKDHVZkcKNZ ghgirvDb/JBRB9M85F5RkKMxkbVKLyLjB6ZrMJntn5ZhsQwgmP2AVMBa+s7v5k1X Rpel4NiQw9mE83WP3C9xJZ9WozY2vrwdXpoOmm3da4dE5pGKHqxH+CVoeRyRd61i KYpBwhv2wgdssp+URuwOHtU+diPCoqTgqj5vJExja7S20VHKF8xKb4GqxE4kt5An vr2RJdS28Nwq+DjVeymMKRfCp9n/sqdJcTMlKjYCjO6YPXuXm5YUqa2xebQ5DmKR b3F7/SYpHx7DMyt5jwRwP9klRSkX06IByumGun0Roj2ZBmnPewAjJK8PamaaZ2oT 6FIMLTXFfLg8oNNsBtPM =8VES -----END PGP SIGNATURE----- Merge tag 'samsung-fixes-v3.19' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into next/fixes-non-critical Pull "Samsung non-critical-fixes for v3.19" from Kukjin Kim: - fix typo in static struct name "exynos5_list_diable_wfi_wfe" : it should be "exynos5_list_disable_wfi_wfe" * tag 'samsung-fixes-v3.19' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung: ARM: EXYNOS: fix typo in static struct name "exynos5_list_diable_wfi_wfe" Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
commit
2b77b35dc2
@ -329,7 +329,7 @@ static unsigned int const exynos5_list_both_cnt_feed[] = {
|
|||||||
EXYNOS5_TOP_PWR_SYSMEM_OPTION,
|
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_ARM_CORE1_OPTION,
|
||||||
EXYNOS5_FSYS_ARM_OPTION,
|
EXYNOS5_FSYS_ARM_OPTION,
|
||||||
EXYNOS5_ISP_ARM_OPTION,
|
EXYNOS5_ISP_ARM_OPTION,
|
||||||
@ -360,11 +360,11 @@ static void exynos5_init_pmu(void)
|
|||||||
/*
|
/*
|
||||||
* Disable WFI/WFE on XXX_OPTION
|
* Disable WFI/WFE on XXX_OPTION
|
||||||
*/
|
*/
|
||||||
for (i = 0 ; i < ARRAY_SIZE(exynos5_list_diable_wfi_wfe) ; i++) {
|
for (i = 0 ; i < ARRAY_SIZE(exynos5_list_disable_wfi_wfe) ; i++) {
|
||||||
tmp = pmu_raw_readl(exynos5_list_diable_wfi_wfe[i]);
|
tmp = pmu_raw_readl(exynos5_list_disable_wfi_wfe[i]);
|
||||||
tmp &= ~(EXYNOS5_OPTION_USE_STANDBYWFE |
|
tmp &= ~(EXYNOS5_OPTION_USE_STANDBYWFE |
|
||||||
EXYNOS5_OPTION_USE_STANDBYWFI);
|
EXYNOS5_OPTION_USE_STANDBYWFI);
|
||||||
pmu_raw_writel(tmp, exynos5_list_diable_wfi_wfe[i]);
|
pmu_raw_writel(tmp, exynos5_list_disable_wfi_wfe[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user