diff options
author | Stefan Herbrechtsmeier | 2023-04-28 14:38:49 +0200 |
---|---|---|
committer | Jagan Teki | 2023-07-13 13:59:57 +0530 |
commit | 03612861a722ebd478c63bf055783fe8c3fcb3bd (patch) | |
tree | 979ad70554771d7ddfa5d54e48eae090fcdbf150 /include/dm | |
parent | 47c32734a67e0493bd4d14c57a520d247fec6cf5 (diff) |
spi: pl022: Remove platform data header
Remove the platform data header because its content is only used by the
driver.
Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'include/dm')
-rw-r--r-- | include/dm/platform_data/spi_pl022.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/dm/platform_data/spi_pl022.h b/include/dm/platform_data/spi_pl022.h deleted file mode 100644 index 7f74b3cbc5c..00000000000 --- a/include/dm/platform_data/spi_pl022.h +++ /dev/null @@ -1,21 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ -/* - * (C) Copyright 2018 - * Quentin Schulz, Bootlin, quentin.schulz@bootlin.com - * - * Structure for use with U_BOOT_DRVINFO for pl022 SPI devices or to use - * in of_to_plat. - */ - -#ifndef __spi_pl022_h -#define __spi_pl022_h - -#include <fdtdec.h> - -struct pl022_spi_pdata { - fdt_addr_t addr; - fdt_size_t size; - unsigned int freq; -}; - -#endif /* __spi_pl022_h */ |