5b80234435
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>
11 lines
154 B
C
11 lines
154 B
C
#ifndef ASMARM_ARCH_UART_H
|
|
#define ASMARM_ARCH_UART_H
|
|
|
|
#define IMXUART_HAVE_RTSCTS (1<<0)
|
|
|
|
struct imxuart_platform_data {
|
|
unsigned int flags;
|
|
};
|
|
|
|
#endif
|