diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-08-05 11:14:15 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-08-07 04:55:48 -0400 |
commit | a09e64fbc0094e3073dbb09c3b4bfe4ab669244b (patch) | |
tree | 69689f467179891b498bd7423fcf61925173db31 /arch/arm/mach-s3c2412 | |
parent | a1b81a84fff05dbfef45b7012c26e1fee9973e5d (diff) |
[ARM] Move include/asm-arm/arch-* to arch/arm/*/include/mach
This just leaves include/asm-arm/plat-* to deal with.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2412')
-rw-r--r-- | arch/arm/mach-s3c2412/clock.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/dma.c | 10 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/gpio.c | 4 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/irq.c | 8 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/mach-jive.c | 12 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/mach-smdk2413.c | 10 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/mach-vstms.c | 10 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/pm.c | 10 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/s3c2412.c | 18 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/sleep.S | 6 |
10 files changed, 47 insertions, 47 deletions
diff --git a/arch/arm/mach-s3c2412/clock.c b/arch/arm/mach-s3c2412/clock.c index b1552b2e8ea8..af4b2ce516f9 100644 --- a/arch/arm/mach-s3c2412/clock.c +++ b/arch/arm/mach-s3c2412/clock.c | |||
@@ -34,12 +34,12 @@ | |||
34 | 34 | ||
35 | #include <asm/mach/map.h> | 35 | #include <asm/mach/map.h> |
36 | 36 | ||
37 | #include <asm/arch/hardware.h> | 37 | #include <mach/hardware.h> |
38 | #include <asm/io.h> | 38 | #include <asm/io.h> |
39 | 39 | ||
40 | #include <asm/plat-s3c/regs-serial.h> | 40 | #include <asm/plat-s3c/regs-serial.h> |
41 | #include <asm/arch/regs-clock.h> | 41 | #include <mach/regs-clock.h> |
42 | #include <asm/arch/regs-gpio.h> | 42 | #include <mach/regs-gpio.h> |
43 | 43 | ||
44 | #include <asm/plat-s3c24xx/s3c2412.h> | 44 | #include <asm/plat-s3c24xx/s3c2412.h> |
45 | #include <asm/plat-s3c24xx/clock.h> | 45 | #include <asm/plat-s3c24xx/clock.h> |
diff --git a/arch/arm/mach-s3c2412/dma.c b/arch/arm/mach-s3c2412/dma.c index 1dd864993566..22fc04a3b533 100644 --- a/arch/arm/mach-s3c2412/dma.c +++ b/arch/arm/mach-s3c2412/dma.c | |||
@@ -18,18 +18,18 @@ | |||
18 | #include <linux/serial_core.h> | 18 | #include <linux/serial_core.h> |
19 | 19 | ||
20 | #include <asm/dma.h> | 20 | #include <asm/dma.h> |
21 | #include <asm/arch/dma.h> | 21 | #include <mach/dma.h> |
22 | #include <asm/io.h> | 22 | #include <asm/io.h> |
23 | 23 | ||
24 | #include <asm/plat-s3c24xx/dma.h> | 24 | #include <asm/plat-s3c24xx/dma.h> |
25 | #include <asm/plat-s3c24xx/cpu.h> | 25 | #include <asm/plat-s3c24xx/cpu.h> |
26 | 26 | ||
27 | #include <asm/plat-s3c/regs-serial.h> | 27 | #include <asm/plat-s3c/regs-serial.h> |
28 | #include <asm/arch/regs-gpio.h> | 28 | #include <mach/regs-gpio.h> |
29 | #include <asm/plat-s3c/regs-ac97.h> | 29 | #include <asm/plat-s3c/regs-ac97.h> |
30 | #include <asm/arch/regs-mem.h> | 30 | #include <mach/regs-mem.h> |
31 | #include <asm/arch/regs-lcd.h> | 31 | #include <mach/regs-lcd.h> |
32 | #include <asm/arch/regs-sdi.h> | 32 | #include <mach/regs-sdi.h> |
33 | #include <asm/plat-s3c24xx/regs-s3c2412-iis.h> | 33 | #include <asm/plat-s3c24xx/regs-s3c2412-iis.h> |
34 | #include <asm/plat-s3c24xx/regs-iis.h> | 34 | #include <asm/plat-s3c24xx/regs-iis.h> |
35 | #include <asm/plat-s3c24xx/regs-spi.h> | 35 | #include <asm/plat-s3c24xx/regs-spi.h> |
diff --git a/arch/arm/mach-s3c2412/gpio.c b/arch/arm/mach-s3c2412/gpio.c index 4f86693b05fd..f7afece7fc38 100644 --- a/arch/arm/mach-s3c2412/gpio.c +++ b/arch/arm/mach-s3c2412/gpio.c | |||
@@ -20,9 +20,9 @@ | |||
20 | #include <asm/mach/arch.h> | 20 | #include <asm/mach/arch.h> |
21 | #include <asm/mach/map.h> | 21 | #include <asm/mach/map.h> |
22 | 22 | ||
23 | #include <asm/arch/regs-gpio.h> | 23 | #include <mach/regs-gpio.h> |
24 | 24 | ||
25 | #include <asm/arch/hardware.h> | 25 | #include <mach/hardware.h> |
26 | 26 | ||
27 | int s3c2412_gpio_set_sleepcfg(unsigned int pin, unsigned int state) | 27 | int s3c2412_gpio_set_sleepcfg(unsigned int pin, unsigned int state) |
28 | { | 28 | { |
diff --git a/arch/arm/mach-s3c2412/irq.c b/arch/arm/mach-s3c2412/irq.c index 0230b2f6353a..ac62b79044f4 100644 --- a/arch/arm/mach-s3c2412/irq.c +++ b/arch/arm/mach-s3c2412/irq.c | |||
@@ -25,15 +25,15 @@ | |||
25 | #include <linux/ioport.h> | 25 | #include <linux/ioport.h> |
26 | #include <linux/sysdev.h> | 26 | #include <linux/sysdev.h> |
27 | 27 | ||
28 | #include <asm/arch/hardware.h> | 28 | #include <mach/hardware.h> |
29 | #include <asm/irq.h> | 29 | #include <asm/irq.h> |
30 | #include <asm/io.h> | 30 | #include <asm/io.h> |
31 | 31 | ||
32 | #include <asm/mach/irq.h> | 32 | #include <asm/mach/irq.h> |
33 | 33 | ||
34 | #include <asm/arch/regs-irq.h> | 34 | #include <mach/regs-irq.h> |
35 | #include <asm/arch/regs-gpio.h> | 35 | #include <mach/regs-gpio.h> |
36 | #include <asm/arch/regs-power.h> | 36 | #include <mach/regs-power.h> |
37 | 37 | ||
38 | #include <asm/plat-s3c24xx/cpu.h> | 38 | #include <asm/plat-s3c24xx/cpu.h> |
39 | #include <asm/plat-s3c24xx/irq.h> | 39 | #include <asm/plat-s3c24xx/irq.h> |
diff --git a/arch/arm/mach-s3c2412/mach-jive.c b/arch/arm/mach-s3c2412/mach-jive.c index 7f5924713485..30f613a79bfe 100644 --- a/arch/arm/mach-s3c2412/mach-jive.c +++ b/arch/arm/mach-s3c2412/mach-jive.c | |||
@@ -37,12 +37,12 @@ | |||
37 | #include <asm/plat-s3c/nand.h> | 37 | #include <asm/plat-s3c/nand.h> |
38 | #include <asm/plat-s3c/iic.h> | 38 | #include <asm/plat-s3c/iic.h> |
39 | 39 | ||
40 | #include <asm/arch/regs-power.h> | 40 | #include <mach/regs-power.h> |
41 | #include <asm/arch/regs-gpio.h> | 41 | #include <mach/regs-gpio.h> |
42 | #include <asm/arch/regs-mem.h> | 42 | #include <mach/regs-mem.h> |
43 | #include <asm/arch/regs-lcd.h> | 43 | #include <mach/regs-lcd.h> |
44 | #include <asm/arch/spi-gpio.h> | 44 | #include <mach/spi-gpio.h> |
45 | #include <asm/arch/fb.h> | 45 | #include <mach/fb.h> |
46 | 46 | ||
47 | #include <asm/mach-types.h> | 47 | #include <asm/mach-types.h> |
48 | 48 | ||
diff --git a/arch/arm/mach-s3c2412/mach-smdk2413.c b/arch/arm/mach-s3c2412/mach-smdk2413.c index d7d0e95949c5..80affb1ee4cd 100644 --- a/arch/arm/mach-s3c2412/mach-smdk2413.c +++ b/arch/arm/mach-s3c2412/mach-smdk2413.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include <asm/mach/map.h> | 24 | #include <asm/mach/map.h> |
25 | #include <asm/mach/irq.h> | 25 | #include <asm/mach/irq.h> |
26 | 26 | ||
27 | #include <asm/arch/hardware.h> | 27 | #include <mach/hardware.h> |
28 | #include <asm/hardware/iomd.h> | 28 | #include <asm/hardware/iomd.h> |
29 | #include <asm/setup.h> | 29 | #include <asm/setup.h> |
30 | #include <asm/io.h> | 30 | #include <asm/io.h> |
@@ -33,12 +33,12 @@ | |||
33 | 33 | ||
34 | //#include <asm/debug-ll.h> | 34 | //#include <asm/debug-ll.h> |
35 | #include <asm/plat-s3c/regs-serial.h> | 35 | #include <asm/plat-s3c/regs-serial.h> |
36 | #include <asm/arch/regs-gpio.h> | 36 | #include <mach/regs-gpio.h> |
37 | #include <asm/arch/regs-lcd.h> | 37 | #include <mach/regs-lcd.h> |
38 | 38 | ||
39 | #include <asm/arch/idle.h> | 39 | #include <mach/idle.h> |
40 | #include <asm/plat-s3c24xx/udc.h> | 40 | #include <asm/plat-s3c24xx/udc.h> |
41 | #include <asm/arch/fb.h> | 41 | #include <mach/fb.h> |
42 | 42 | ||
43 | #include <asm/plat-s3c24xx/s3c2410.h> | 43 | #include <asm/plat-s3c24xx/s3c2410.h> |
44 | #include <asm/plat-s3c24xx/s3c2412.h> | 44 | #include <asm/plat-s3c24xx/s3c2412.h> |
diff --git a/arch/arm/mach-s3c2412/mach-vstms.c b/arch/arm/mach-s3c2412/mach-vstms.c index d7087d0dbad2..7a08b3789915 100644 --- a/arch/arm/mach-s3c2412/mach-vstms.c +++ b/arch/arm/mach-s3c2412/mach-vstms.c | |||
@@ -27,18 +27,18 @@ | |||
27 | #include <asm/mach/map.h> | 27 | #include <asm/mach/map.h> |
28 | #include <asm/mach/irq.h> | 28 | #include <asm/mach/irq.h> |
29 | 29 | ||
30 | #include <asm/arch/hardware.h> | 30 | #include <mach/hardware.h> |
31 | #include <asm/setup.h> | 31 | #include <asm/setup.h> |
32 | #include <asm/io.h> | 32 | #include <asm/io.h> |
33 | #include <asm/irq.h> | 33 | #include <asm/irq.h> |
34 | #include <asm/mach-types.h> | 34 | #include <asm/mach-types.h> |
35 | 35 | ||
36 | #include <asm/plat-s3c/regs-serial.h> | 36 | #include <asm/plat-s3c/regs-serial.h> |
37 | #include <asm/arch/regs-gpio.h> | 37 | #include <mach/regs-gpio.h> |
38 | #include <asm/arch/regs-lcd.h> | 38 | #include <mach/regs-lcd.h> |
39 | 39 | ||
40 | #include <asm/arch/idle.h> | 40 | #include <mach/idle.h> |
41 | #include <asm/arch/fb.h> | 41 | #include <mach/fb.h> |
42 | 42 | ||
43 | #include <asm/plat-s3c/nand.h> | 43 | #include <asm/plat-s3c/nand.h> |
44 | 44 | ||
diff --git a/arch/arm/mach-s3c2412/pm.c b/arch/arm/mach-s3c2412/pm.c index a71d6c6cd447..737523a4e037 100644 --- a/arch/arm/mach-s3c2412/pm.c +++ b/arch/arm/mach-s3c2412/pm.c | |||
@@ -19,14 +19,14 @@ | |||
19 | #include <linux/sysdev.h> | 19 | #include <linux/sysdev.h> |
20 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
21 | 21 | ||
22 | #include <asm/arch/hardware.h> | 22 | #include <mach/hardware.h> |
23 | #include <asm/io.h> | 23 | #include <asm/io.h> |
24 | #include <asm/irq.h> | 24 | #include <asm/irq.h> |
25 | 25 | ||
26 | #include <asm/arch/regs-power.h> | 26 | #include <mach/regs-power.h> |
27 | #include <asm/arch/regs-gpioj.h> | 27 | #include <mach/regs-gpioj.h> |
28 | #include <asm/arch/regs-gpio.h> | 28 | #include <mach/regs-gpio.h> |
29 | #include <asm/arch/regs-dsc.h> | 29 | #include <mach/regs-dsc.h> |
30 | 30 | ||
31 | #include <asm/plat-s3c24xx/cpu.h> | 31 | #include <asm/plat-s3c24xx/cpu.h> |
32 | #include <asm/plat-s3c24xx/pm.h> | 32 | #include <asm/plat-s3c24xx/pm.h> |
diff --git a/arch/arm/mach-s3c2412/s3c2412.c b/arch/arm/mach-s3c2412/s3c2412.c index 5ce001b5c275..d278010b9f60 100644 --- a/arch/arm/mach-s3c2412/s3c2412.c +++ b/arch/arm/mach-s3c2412/s3c2412.c | |||
@@ -25,22 +25,22 @@ | |||
25 | #include <asm/mach/map.h> | 25 | #include <asm/mach/map.h> |
26 | #include <asm/mach/irq.h> | 26 | #include <asm/mach/irq.h> |
27 | 27 | ||
28 | #include <asm/arch/hardware.h> | 28 | #include <mach/hardware.h> |
29 | #include <asm/proc-fns.h> | 29 | #include <asm/proc-fns.h> |
30 | #include <asm/io.h> | 30 | #include <asm/io.h> |
31 | #include <asm/irq.h> | 31 | #include <asm/irq.h> |
32 | 32 | ||
33 | #include <asm/arch/reset.h> | 33 | #include <mach/reset.h> |
34 | #include <asm/arch/idle.h> | 34 | #include <mach/idle.h> |
35 | 35 | ||
36 | #include <asm/arch/regs-clock.h> | 36 | #include <mach/regs-clock.h> |
37 | #include <asm/plat-s3c/regs-serial.h> | 37 | #include <asm/plat-s3c/regs-serial.h> |
38 | #include <asm/arch/regs-power.h> | 38 | #include <mach/regs-power.h> |
39 | #include <asm/arch/regs-gpio.h> | 39 | #include <mach/regs-gpio.h> |
40 | #include <asm/arch/regs-gpioj.h> | 40 | #include <mach/regs-gpioj.h> |
41 | #include <asm/arch/regs-dsc.h> | 41 | #include <mach/regs-dsc.h> |
42 | #include <asm/plat-s3c24xx/regs-spi.h> | 42 | #include <asm/plat-s3c24xx/regs-spi.h> |
43 | #include <asm/arch/regs-s3c2412.h> | 43 | #include <mach/regs-s3c2412.h> |
44 | 44 | ||
45 | #include <asm/plat-s3c24xx/s3c2412.h> | 45 | #include <asm/plat-s3c24xx/s3c2412.h> |
46 | #include <asm/plat-s3c24xx/cpu.h> | 46 | #include <asm/plat-s3c24xx/cpu.h> |
diff --git a/arch/arm/mach-s3c2412/sleep.S b/arch/arm/mach-s3c2412/sleep.S index 609312b62023..c82418ed714d 100644 --- a/arch/arm/mach-s3c2412/sleep.S +++ b/arch/arm/mach-s3c2412/sleep.S | |||
@@ -22,10 +22,10 @@ | |||
22 | 22 | ||
23 | #include <linux/linkage.h> | 23 | #include <linux/linkage.h> |
24 | #include <asm/assembler.h> | 24 | #include <asm/assembler.h> |
25 | #include <asm/arch/hardware.h> | 25 | #include <mach/hardware.h> |
26 | #include <asm/arch/map.h> | 26 | #include <mach/map.h> |
27 | 27 | ||
28 | #include <asm/arch/regs-irq.h> | 28 | #include <mach/regs-irq.h> |
29 | 29 | ||
30 | .text | 30 | .text |
31 | 31 | ||