diff options
author | SAN People <andrew@sanpeople.com> | 2006-01-09 12:05:41 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-01-09 12:05:41 -0500 |
commit | 73a59c1c4af06c675a168d698d3ebfbb3270ddbe (patch) | |
tree | fa1708e19cf89a6bd13c8f7725a9cc67cc4ae6fd /arch/arm/mach-at91rm9200/Makefile | |
parent | 50365c57860cd931c2d806057e0987634797e9af (diff) |
[ARM] 3240/2: AT91RM9200 support for 2.6 (Core)
Patch from SAN People
Following changes were made to clock.c:
1) Replaced <asm/hardware/clock.h> with <linux/clk.h>
2) Removed old unused clk_enable & clk_disable.
3) Replaced clk_use/clk_unuse with clk_enable/clk_disable.
Otherwise it's the same as the previous patch.
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 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/arch/arm/mach-at91rm9200/Makefile b/arch/arm/mach-at91rm9200/Makefile new file mode 100644 index 000000000000..1f2805ca6e21 --- /dev/null +++ b/arch/arm/mach-at91rm9200/Makefile | |||
@@ -0,0 +1,27 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | obj-y := clock.o irq.o time.o gpio.o common.o devices.o | ||
6 | obj-m := | ||
7 | obj-n := | ||
8 | obj- := | ||
9 | |||
10 | # Board-specific support | ||
11 | #obj-$(CONFIG_ARCH_AT91RM9200DK) += board-dk.o | ||
12 | #obj-$(CONFIG_MACH_AT91RM9200EK) += board-ek.o | ||
13 | #obj-$(CONFIG_MACH_CSB337) += board-csb337.o | ||
14 | #obj-$(CONFIG_MACH_CSB637) += board-csb637.o | ||
15 | #obj-$(CONFIG_MACH_CARMEVA) += board-carmeva.o | ||
16 | #obj-$(CONFIG_MACH_KB9200) += board-kb9202.o | ||
17 | |||
18 | # LEDs support | ||
19 | #led-$(CONFIG_ARCH_AT91RM9200DK) += leds.o | ||
20 | #led-$(CONFIG_MACH_AT91RM9200EK) += leds.o | ||
21 | #led-$(CONFIG_MACH_CSB337) += leds.o | ||
22 | #led-$(CONFIG_MACH_CSB637) += leds.o | ||
23 | #led-$(CONFIG_MACH_KB9200) += leds.o | ||
24 | obj-$(CONFIG_LEDS) += $(led-y) | ||
25 | |||
26 | # VGA support | ||
27 | #obj-$(CONFIG_FB_S1D13XXX) += ics1523.o | ||