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 /include/asm-arm/arch-pxa/zylonite.h | |
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 'include/asm-arm/arch-pxa/zylonite.h')
-rw-r--r-- | include/asm-arm/arch-pxa/zylonite.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/include/asm-arm/arch-pxa/zylonite.h b/include/asm-arm/arch-pxa/zylonite.h deleted file mode 100644 index 0d35ca04731e..000000000000 --- a/include/asm-arm/arch-pxa/zylonite.h +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | #ifndef __ASM_ARCH_ZYLONITE_H | ||
2 | #define __ASM_ARCH_ZYLONITE_H | ||
3 | |||
4 | #define ZYLONITE_ETH_PHYS 0x14000000 | ||
5 | |||
6 | #define EXT_GPIO(x) (128 + (x)) | ||
7 | |||
8 | /* the following variables are processor specific and initialized | ||
9 | * by the corresponding zylonite_pxa3xx_init() | ||
10 | */ | ||
11 | struct platform_mmc_slot { | ||
12 | int gpio_cd; | ||
13 | int gpio_wp; | ||
14 | }; | ||
15 | |||
16 | extern struct platform_mmc_slot zylonite_mmc_slot[]; | ||
17 | |||
18 | extern int gpio_eth_irq; | ||
19 | extern int gpio_debug_led1; | ||
20 | extern int gpio_debug_led2; | ||
21 | |||
22 | extern int wm9713_irq; | ||
23 | |||
24 | extern int lcd_id; | ||
25 | extern int lcd_orientation; | ||
26 | |||
27 | #ifdef CONFIG_CPU_PXA300 | ||
28 | extern void zylonite_pxa300_init(void); | ||
29 | #else | ||
30 | static inline void zylonite_pxa300_init(void) | ||
31 | { | ||
32 | if (cpu_is_pxa300() || cpu_is_pxa310()) | ||
33 | panic("%s: PXA300/PXA310 not supported\n", __FUNCTION__); | ||
34 | } | ||
35 | #endif | ||
36 | |||
37 | #ifdef CONFIG_CPU_PXA320 | ||
38 | extern void zylonite_pxa320_init(void); | ||
39 | #else | ||
40 | static inline void zylonite_pxa320_init(void) | ||
41 | { | ||
42 | if (cpu_is_pxa320()) | ||
43 | panic("%s: PXA320 not supported\n", __FUNCTION__); | ||
44 | } | ||
45 | #endif | ||
46 | |||
47 | #endif /* __ASM_ARCH_ZYLONITE_H */ | ||