diff options
author | Abhilash Kesavan <a.kesavan@samsung.com> | 2013-10-23 21:01:44 +0900 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-05-15 19:23:26 +0900 |
commit | 1bb1523b8eaa353312cb62e45ca03004a1271279 (patch) | |
tree | f4b6985c46bb64482298cb6c2dbd6e0926462b34 | |
parent | 93eb828c65f40271478934223b8cfe29e62dd562 (diff) | |
download | linux-3.10-1bb1523b8eaa353312cb62e45ca03004a1271279.tar.gz linux-3.10-1bb1523b8eaa353312cb62e45ca03004a1271279.tar.bz2 linux-3.10-1bb1523b8eaa353312cb62e45ca03004a1271279.zip |
PM / devfreq: Move exynos4 devfreq driver into a new sub-directory
In anticipation of the new exynos5 devfreq and ppmu driver, create
an exynos sub-directory. Move the existing exynos4 devfreq driver
into the same.
Change-Id: I4734de3aa1da881996c580145cdc2f78d8df2553
Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
-rw-r--r-- | drivers/devfreq/Makefile | 2 | ||||
-rw-r--r-- | drivers/devfreq/exynos/Makefile | 2 | ||||
-rw-r--r-- | drivers/devfreq/exynos/exynos4_bus.c (renamed from drivers/devfreq/exynos4_bus.c) | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/drivers/devfreq/Makefile b/drivers/devfreq/Makefile index 8c464234f7e..3bc1fef56f4 100644 --- a/drivers/devfreq/Makefile +++ b/drivers/devfreq/Makefile @@ -5,4 +5,4 @@ obj-$(CONFIG_DEVFREQ_GOV_POWERSAVE) += governor_powersave.o obj-$(CONFIG_DEVFREQ_GOV_USERSPACE) += governor_userspace.o # DEVFREQ Drivers -obj-$(CONFIG_ARM_EXYNOS4_BUS_DEVFREQ) += exynos4_bus.o +obj-$(CONFIG_ARM_EXYNOS4_BUS_DEVFREQ) += exynos/ diff --git a/drivers/devfreq/exynos/Makefile b/drivers/devfreq/exynos/Makefile new file mode 100644 index 00000000000..1498823611b --- /dev/null +++ b/drivers/devfreq/exynos/Makefile @@ -0,0 +1,2 @@ +# Exynos DEVFREQ Drivers +obj-$(CONFIG_ARM_EXYNOS4_BUS_DEVFREQ) += exynos4_bus.o diff --git a/drivers/devfreq/exynos4_bus.c b/drivers/devfreq/exynos/exynos4_bus.c index 7319e8106f4..dc5b1153c6b 100644 --- a/drivers/devfreq/exynos4_bus.c +++ b/drivers/devfreq/exynos/exynos4_bus.c @@ -117,7 +117,7 @@ static struct bus_opp_table exynos4210_busclk_table[] = { }; /* - * MIF is the main control knob clock for exynox4x12 MIF/INT + * MIF is the main control knob clock for Exynos4x12 MIF/INT * clock and voltage of both mif/int are controlled. */ static struct bus_opp_table exynos4x12_mifclk_table[] = { |