diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2013-03-13 21:10:02 +0000 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-05-15 19:23:28 +0900 |
commit | dc9c441dccdba731ec279067dc1f360a906384bf (patch) | |
tree | 7ed1f5333f4bcbc1ab5a4d9f36545806f2adb176 | |
parent | 771246163834389d669f8647a5f71dc813fa50ce (diff) | |
download | linux-3.10-dc9c441dccdba731ec279067dc1f360a906384bf.tar.gz linux-3.10-dc9c441dccdba731ec279067dc1f360a906384bf.tar.bz2 linux-3.10-dc9c441dccdba731ec279067dc1f360a906384bf.zip |
PM / devfreq: fix typo "CPU_EXYNOS4.12" twice
Dependencies on CPU_EXYNOS4212 and CPU_EXYNOS4412 for the "ARM
Exynos4210/4212/4412 Memory Bus DEVFREQ Driver" were added in commit
7b4050381127ae11fcfc74a106d715a5fbbf888a ("PM/Devfreq: Add Exynos4-bus
device DVFS driver for Exynos4210/4212/4412."). The tree (at that time,
v3.3, and currently) makes clear that this should have been dependencies
on SOC_EXYNOS4212 and SOC_EXYNOS4412.
Change-Id: Ica470368f1e609199a5454d0de9d0448de2bccd2
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
-rw-r--r-- | drivers/devfreq/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/devfreq/Kconfig b/drivers/devfreq/Kconfig index 1560d0d4be9..31f3adba4cf 100644 --- a/drivers/devfreq/Kconfig +++ b/drivers/devfreq/Kconfig @@ -67,7 +67,7 @@ comment "DEVFREQ Drivers" config ARM_EXYNOS4_BUS_DEVFREQ bool "ARM Exynos4210/4212/4412 Memory Bus DEVFREQ Driver" - depends on CPU_EXYNOS4210 || CPU_EXYNOS4212 || CPU_EXYNOS4412 + depends on CPU_EXYNOS4210 || SOC_EXYNOS4212 || SOC_EXYNOS4412 select ARCH_HAS_OPP select DEVFREQ_GOV_SIMPLE_ONDEMAND help |