commit | 4f9d8e339c0d5eef75e57cae992fb32d2d6e8876 | [log] [tgz] |
---|---|---|
author | Balint Dobszay <balint.dobszay@arm.com> | Thu Apr 13 13:55:08 2023 +0200 |
committer | György Szing <gyorgy.szing@arm.com> | Fri Jun 02 10:54:23 2023 +0200 |
tree | 3d90e7bbed5f45f9f88147f6c6dedb7e03d8f9f3 | |
parent | 8102ba7f081363bbc2bb64a2f19180e0bda7fe57 [diff] |
Refactor FF-A boot info Refactor the FF-A boot info related types to prepare for adding the FF-A v1.1 structures. Signed-off-by: Balint Dobszay <balint.dobszay@arm.com> Change-Id: I03dd0275d367611e6156c4ba47bdbacb62296001
diff --git a/environments/opteesp/sp_entry.c b/environments/opteesp/sp_entry.c index 6249407..f7d67cb 100644 --- a/environments/opteesp/sp_entry.c +++ b/environments/opteesp/sp_entry.c
@@ -26,5 +26,5 @@ libc_init(); - sp_main((struct ffa_init_info *)a0); + sp_main((union ffa_boot_info *)a0); }
diff --git a/environments/sp/sp_entry.c b/environments/sp/sp_entry.c index 0a709c2..c9b2510 100644 --- a/environments/sp/sp_entry.c +++ b/environments/sp/sp_entry.c
@@ -26,5 +26,5 @@ libc_init(); - sp_main((struct ffa_init_info *)a0); + sp_main((union ffa_boot_info *)a0); }