diff options
author | Ashok Reddy Soma <ashok.reddy.soma@xilinx.com> | 2022-07-22 02:46:57 -0600 |
---|---|---|
committer | Michal Simek <michal.simek@amd.com> | 2022-07-26 08:36:20 +0200 |
commit | cce33515010287a5bd7f4b6f9ebce0f56268a7f1 (patch) | |
tree | f91c8a98fe46778c138607eabb2627df31a838d3 /arch/arm/mach-zynqmp | |
parent | 7b4e365e49c76df88917883bd59dc9799131bac2 (diff) | |
download | u-boot-cce33515010287a5bd7f4b6f9ebce0f56268a7f1.tar.gz u-boot-cce33515010287a5bd7f4b6f9ebce0f56268a7f1.tar.bz2 u-boot-cce33515010287a5bd7f4b6f9ebce0f56268a7f1.zip |
mailbox: zynqmp: Move struct zynqmp_ipi_msg from sys_proto.h
Mailbox driver might be need for Versal and other future platforms.
To remove the dependency, move struct zynqmp_ipi_msg to
zynqmp_firmware.h so that mailbox driver compiles for other platforms
easily.
Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/20220722084658.30995-5-ashok.reddy.soma@xilinx.com
Diffstat (limited to 'arch/arm/mach-zynqmp')
-rw-r--r-- | arch/arm/mach-zynqmp/include/mach/sys_proto.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/arm/mach-zynqmp/include/mach/sys_proto.h b/arch/arm/mach-zynqmp/include/mach/sys_proto.h index 1c12eac715..9fffb4e541 100644 --- a/arch/arm/mach-zynqmp/include/mach/sys_proto.h +++ b/arch/arm/mach-zynqmp/include/mach/sys_proto.h @@ -46,11 +46,6 @@ enum { TCM_SPLIT, }; -struct zynqmp_ipi_msg { - size_t len; - u32 *buf; -}; - int zynq_board_read_rom_ethaddr(unsigned char *ethaddr); unsigned int zynqmp_get_silicon_version(void); |