u-boot-brain/include/dm/platform_data/fsl_espi.h
Simon Glass 8a8d24bdf1 dm: treewide: Rename ..._platdata variables to just ..._plat
Try to maintain some consistency between these variables by using _plat as
a suffix for them.

Signed-off-by: Simon Glass <sjg@chromium.org>
2020-12-13 16:51:09 -07:00

17 lines
240 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright 2019 NXP
*/
#ifndef __fsl_espi_h
#define __fsl_espi_h
struct fsl_espi_plat {
uint flags;
uint speed_hz;
uint num_chipselect;
fdt_addr_t regs_addr;
};
#endif /* __fsl_espi_h */