serial_mxc.h 292 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2014 Google, Inc
  4. */
  5. #ifndef __serial_mxc_h
  6. #define __serial_mxc_h
  7. /* Information about a serial port */
  8. struct mxc_serial_platdata {
  9. struct mxc_uart *reg; /* address of registers in physical memory */
  10. bool use_dte;
  11. };
  12. #endif