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

Commit e96b234b authored by Kukjin Kim's avatar Kukjin Kim Committed by Ben Dooks
Browse files

ARM: S5P6440: Move CPU specific code in plat-s5p to machine directory



The s5p6440-clock.c and s5p6440-init.c code in the plat-s5p is specific to
s5p6440 SoC based systems. So these files are being moved to the machine
directory of s5p6440. And these files are renamed in the machine directory.

Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent 159a3ddd
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -9,8 +9,6 @@ if ARCH_S5P6440

config CPU_S5P6440
	bool
	select CPU_S5P6440_INIT
	select CPU_S5P6440_CLOCK
	help
	  Enable S5P6440 CPU support

+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ obj- :=

# Core support for S5P6440 system

obj-$(CONFIG_CPU_S5P6440)	+= cpu.o s5p6440-gpio.o
obj-$(CONFIG_CPU_S5P6440)	+= cpu.o init.o clock.o gpio.o

# machine support

+1 −1
Original line number Diff line number Diff line
/* linux/arch/arm/plat-s5p/s5p6440-clock.c
/* linux/arch/arm/mach-s5p6440/clock.c
 *
 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com/
+1 −1
Original line number Diff line number Diff line
/* arch/arm/mach-s5p6440/s5p6440-gpio.c
/* arch/arm/mach-s5p6440/gpio.c
 *
 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
 * 		http://www.samsung.com/
+3 −1
Original line number Diff line number Diff line
/* linux/arch/arm/plat-s5p/s5p6440-init.c
/* linux/arch/arm/mach-s5p6440/init.c
 *
 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com/
 *
 * S5P6440 - Init support
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
Loading