diff options
author | Andrew Victor <andrew@sanpeople.com> | 2006-11-30 03:33:53 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-11-30 17:51:33 -0500 |
commit | 20127f6863990e1313178debe8c9cfe32d43b1dc (patch) | |
tree | 1e5806617475b025227a0d0e7f6e2b3817d5ca33 /arch/arm/mach-at91rm9200/Makefile | |
parent | 0215ffb08ce99e2bb59eca114a99499a4d06e704 (diff) |
[ARM] 3945/1: AT91: Rename devices.c
This patch renames the arch/arm/mach-at91rm9200/devices.c file to
at91rm9200_devices.c. The file contains AT91RM9200-specific code, so we
will need separate files for the SAM9 processors.
Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-at91rm9200/Makefile')
-rw-r--r-- | arch/arm/mach-at91rm9200/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-at91rm9200/Makefile b/arch/arm/mach-at91rm9200/Makefile index c174805c24e5..568d8d76cde0 100644 --- a/arch/arm/mach-at91rm9200/Makefile +++ b/arch/arm/mach-at91rm9200/Makefile | |||
@@ -2,7 +2,7 @@ | |||
2 | # Makefile for the linux kernel. | 2 | # Makefile for the linux kernel. |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := clock.o irq.o gpio.o devices.o | 5 | obj-y := clock.o irq.o gpio.o |
6 | obj-m := | 6 | obj-m := |
7 | obj-n := | 7 | obj-n := |
8 | obj- := | 8 | obj- := |
@@ -10,7 +10,7 @@ obj- := | |||
10 | obj-$(CONFIG_PM) += pm.o | 10 | obj-$(CONFIG_PM) += pm.o |
11 | 11 | ||
12 | # CPU-specific support | 12 | # CPU-specific support |
13 | obj-$(CONFIG_ARCH_AT91RM9200) += at91rm9200.o at91rm9200_time.o | 13 | obj-$(CONFIG_ARCH_AT91RM9200) += at91rm9200.o at91rm9200_time.o at91rm9200_devices.c |
14 | obj-$(CONFIG_ARCH_AT91SAM9260) += | 14 | obj-$(CONFIG_ARCH_AT91SAM9260) += |
15 | obj-$(CONFIG_ARCH_AT91SAM9261) += | 15 | obj-$(CONFIG_ARCH_AT91SAM9261) += |
16 | 16 | ||