imx-uart.h 243 B

123456789101112
  1. #ifndef ASMARM_ARCH_UART_H
  2. #define ASMARM_ARCH_UART_H
  3. #define IMXUART_HAVE_RTSCTS (1<<0)
  4. struct imxuart_platform_data {
  5. int (*init)(struct platform_device *pdev);
  6. void (*exit)(struct platform_device *pdev);
  7. unsigned int flags;
  8. };
  9. #endif