of_serial.h 445 B

1234567891011121314151617
  1. #ifndef __LINUX_OF_SERIAL_H
  2. #define __LINUX_OF_SERIAL_H
  3. /*
  4. * FIXME remove this file when tegra finishes conversion to open firmware,
  5. * expectation is that all quirks will then be self-contained in
  6. * drivers/tty/serial/of_serial.c.
  7. */
  8. #ifdef CONFIG_ARCH_TEGRA
  9. extern void tegra_serial_handle_break(struct uart_port *port);
  10. #else
  11. static inline void tegra_serial_handle_break(struct uart_port *port)
  12. {
  13. }
  14. #endif
  15. #endif /* __LINUX_OF_SERIAL */