blob: 86cd3bcf628d63f29e805e953b4ba0b83831c95e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass8bc85192014-10-01 19:57:27 -06002/*
3 * Copyright (c) 2014 Google, Inc
Simon Glass8bc85192014-10-01 19:57:27 -06004 */
5
6#ifndef __serial_mxc_h
7#define __serial_mxc_h
8
9/* Information about a serial port */
10struct mxc_serial_platdata {
11 struct mxc_uart *reg; /* address of registers in physical memory */
Stefan Agner07b3f332016-07-13 00:25:35 -070012 bool use_dte;
Simon Glass8bc85192014-10-01 19:57:27 -060013};
14
15#endif