mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 06:12:58 +00:00
17 lines
244 B
C
17 lines
244 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright 2019 NXP
|
||
|
*/
|
||
|
|
||
|
#ifndef __fsl_espi_h
|
||
|
#define __fsl_espi_h
|
||
|
|
||
|
struct fsl_espi_platdata {
|
||
|
uint flags;
|
||
|
uint speed_hz;
|
||
|
uint num_chipselect;
|
||
|
fdt_addr_t regs_addr;
|
||
|
};
|
||
|
|
||
|
#endif /* __fsl_espi_h */
|