forked from Minki/linux
a58154d1c3
1. Add entries to Kconfig 2. Add machine definition 3. Add Uart platform data, pad setting and base address 4. Adjust GPIO irq number Signed-off-by: Yong Shen <yong.shen@linaro.org> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
14 lines
484 B
C
14 lines
484 B
C
/*
|
|
* Copyright (C) 2010 Yong Shen. <Yong.Shen@linaro.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License version 2 as published by the
|
|
* Free Software Foundation.
|
|
*/
|
|
#include <mach/mx53.h>
|
|
#include <mach/devices-common.h>
|
|
|
|
extern const struct imx_imx_uart_1irq_data imx53_imx_uart_data[] __initconst;
|
|
#define imx53_add_imx_uart(id, pdata) \
|
|
imx_add_imx_uart_1irq(&imx53_imx_uart_data[id], pdata)
|