mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
versal: fix versal PM ret payload size
The PM return payload size is defined as 4 bytes for Versal arquitecture while the PM calls implemented both in the Versal clock driver and ZynqMP firmware driver expects 5 bytes length. Signed-off-by: Ibai Erkiaga <ibai.erkiaga-elorza@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
526a67eb35
commit
11b1dcec09
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ enum {
|
|||
TCM_SPLIT,
|
||||
};
|
||||
|
||||
#define PAYLOAD_ARG_CNT 4U
|
||||
#define PAYLOAD_ARG_CNT 5U
|
||||
|
||||
void tcm_init(u8 mode);
|
||||
void mem_map_fill(void);
|
||||
|
|
Loading…
Reference in a new issue