diff options
author | Sascha Hauer <sascha@saschahauer.de> | 2006-05-04 14:07:42 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-05-04 14:07:42 +0100 |
commit | 5b802344357338a4d645beac8ca97470bcbe3542 (patch) | |
tree | f3f8df6cb9bec5ddb6dc947ea99eb9454232066b /include | |
parent | b2556da55f78a9dbe92830b1d1c0b612edfea9fd (diff) | |
download | op-kernel-dev-5b802344357338a4d645beac8ca97470bcbe3542.zip op-kernel-dev-5b802344357338a4d645beac8ca97470bcbe3542.tar.gz |
[ARM] 3490/1: i.MX: move uart resources to board files
Patch from Sascha Hauer
This patch moves the i.MX uart resources and the gpio pin setup to the
board files. This allows the boards to decide how many internal uarts
are connected to the outside world and whether they use rts/cts or
not.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-imx/imx-uart.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asm-arm/arch-imx/imx-uart.h b/include/asm-arm/arch-imx/imx-uart.h new file mode 100644 index 0000000..3a685e1 --- /dev/null +++ b/include/asm-arm/arch-imx/imx-uart.h @@ -0,0 +1,10 @@ +#ifndef ASMARM_ARCH_UART_H +#define ASMARM_ARCH_UART_H + +#define IMXUART_HAVE_RTSCTS (1<<0) + +struct imxuart_platform_data { + unsigned int flags; +}; + +#endif |