Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dbb8fd34 authored by Kukjin Kim's avatar Kukjin Kim
Browse files

ARM: S3C24XX: Move mach-s3c2412/ cpufreq driver into mach-s3c24xx/



This patch moves mach-s3c2412/cpufreq driver into mach-s3c24xx/
and removes arch/arm/mach-s3c2412/ directory in kernel.

Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent c896ba88
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1095,7 +1095,6 @@ source "arch/arm/plat-spear/Kconfig"

source "arch/arm/mach-s3c24xx/Kconfig"
if ARCH_S3C24XX
source "arch/arm/mach-s3c2412/Kconfig"
source "arch/arm/mach-s3c2440/Kconfig"
endif

+1 −1
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@ machine-$(CONFIG_ARCH_PRIMA2) += prima2
machine-$(CONFIG_ARCH_PXA)		+= pxa
machine-$(CONFIG_ARCH_REALVIEW)		+= realview
machine-$(CONFIG_ARCH_RPC)		+= rpc
machine-$(CONFIG_ARCH_S3C24XX)		+= s3c24xx s3c2412 s3c2440
machine-$(CONFIG_ARCH_S3C24XX)		+= s3c24xx s3c2440
machine-$(CONFIG_ARCH_S3C64XX)		+= s3c64xx
machine-$(CONFIG_ARCH_S5P64X0)		+= s5p64x0
machine-$(CONFIG_ARCH_S5PC100)		+= s5pc100

arch/arm/mach-s3c2412/Kconfig

deleted100644 → 0
+0 −13
Original line number Diff line number Diff line
# Copyright 2007 Simtec Electronics
#
# Licensed under GPLv2

# Note, the S3C2412 IOtiming support is in plat-s3c24xx

config S3C2412_CPUFREQ
	bool
	depends on CPU_FREQ_S3C24XX && CPU_S3C2412
	default y
	select S3C2412_IOTIMING
	help
	  CPU Frequency scaling support for S3C2412 and S3C2413 SoC CPUs.

arch/arm/mach-s3c2412/Makefile

deleted100644 → 0
+0 −12
Original line number Diff line number Diff line
# arch/arm/mach-s3c2412/Makefile
#
# Copyright 2007 Simtec Electronics
#
# Licensed under GPLv2

obj-y				:=
obj-m				:=
obj-n				:=
obj-				:=

obj-$(CONFIG_S3C2412_CPUFREQ)	+= cpu-freq.o
+8 −0
Original line number Diff line number Diff line
@@ -280,6 +280,14 @@ config CPU_S3C2412_ONLY
		   !CPU_S3C2443 && CPU_S3C2412
	default y

config S3C2412_CPUFREQ
	bool
	depends on CPU_FREQ_S3C24XX && CPU_S3C2412
	default y
	select S3C2412_IOTIMING
	help
	  CPU Frequency scaling support for S3C2412 and S3C2413 SoC CPUs.

config S3C2412_DMA
	bool
	help
Loading