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