mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
8a8d24bdf1
Try to maintain some consistency between these variables by using _plat as a suffix for them. Signed-off-by: Simon Glass <sjg@chromium.org>
16 lines
240 B
C
16 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 */
|