diff options
Diffstat (limited to 'arch/arm/mach-mxs/devices-mx23.h')
-rw-r--r-- | arch/arm/mach-mxs/devices-mx23.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/mach-mxs/devices-mx23.h b/arch/arm/mach-mxs/devices-mx23.h index 1256788561d..c7e14f4e366 100644 --- a/arch/arm/mach-mxs/devices-mx23.h +++ b/arch/arm/mach-mxs/devices-mx23.h | |||
@@ -10,7 +10,18 @@ | |||
10 | */ | 10 | */ |
11 | #include <mach/mx23.h> | 11 | #include <mach/mx23.h> |
12 | #include <mach/devices-common.h> | 12 | #include <mach/devices-common.h> |
13 | #include <mach/mxsfb.h> | ||
13 | 14 | ||
14 | extern const struct amba_device mx23_duart_device __initconst; | 15 | extern const struct amba_device mx23_duart_device __initconst; |
15 | #define mx23_add_duart() \ | 16 | #define mx23_add_duart() \ |
16 | mxs_add_duart(&mx23_duart_device) | 17 | mxs_add_duart(&mx23_duart_device) |
18 | |||
19 | extern const struct mxs_auart_data mx23_auart_data[] __initconst; | ||
20 | #define mx23_add_auart(id) mxs_add_auart(&mx23_auart_data[id]) | ||
21 | #define mx23_add_auart0() mx23_add_auart(0) | ||
22 | #define mx23_add_auart1() mx23_add_auart(1) | ||
23 | |||
24 | #define mx23_add_mxs_pwm(id) mxs_add_mxs_pwm(MX23_PWM_BASE_ADDR, id) | ||
25 | |||
26 | struct platform_device *__init mx23_add_mxsfb( | ||
27 | const struct mxsfb_platform_data *pdata); | ||