2006-05-04 21:07:42 +08:00
|
|
|
#ifndef ASMARM_ARCH_UART_H
|
|
|
|
#define ASMARM_ARCH_UART_H
|
|
|
|
|
|
|
|
#define IMXUART_HAVE_RTSCTS (1<<0)
|
|
|
|
|
|
|
|
struct imxuart_platform_data {
|
2008-07-05 16:02:45 +08:00
|
|
|
int (*init)(struct platform_device *pdev);
|
|
|
|
void (*exit)(struct platform_device *pdev);
|
2006-05-04 21:07:42 +08:00
|
|
|
unsigned int flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|