8250_dwlib.h 343 B

1234567891011121314151617181920
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /* Synopsys DesignWare 8250 library header file. */
  3. #include <linux/types.h>
  4. #include "8250.h"
  5. struct dw8250_port_data {
  6. /* Port properties */
  7. int line;
  8. /* DMA operations */
  9. struct uart_8250_dma dma;
  10. /* Hardware configuration */
  11. u8 dlf_size;
  12. };
  13. void dw8250_setup_port(struct uart_port *p);