diff options
author | Martin Schiller <ms@dev.tdt.de> | 2021-10-11 12:43:55 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-12-13 23:22:29 +0100 |
commit | 294140c1247d42746e655a9bbaafcf4d1a9748a5 (patch) | |
tree | 3ee2810cb4ac9f3feb135ab78949cd71d3286182 /package/boot/tfa-layerscape/patches/010-gcc11.patch | |
parent | 674af9c1f6a811fdf1f1a82dc16ce19175a6e6d2 (diff) | |
download | upstream-294140c1247d42746e655a9bbaafcf4d1a9748a5.tar.gz upstream-294140c1247d42746e655a9bbaafcf4d1a9748a5.tar.bz2 upstream-294140c1247d42746e655a9bbaafcf4d1a9748a5.zip |
tfa-layerscape: bump to LSDK-21.08
Update tfa package to latest LSDK-21.08.
Signed-off-by: Martin Schiller <ms@dev.tdt.de>
Diffstat (limited to 'package/boot/tfa-layerscape/patches/010-gcc11.patch')
-rw-r--r-- | package/boot/tfa-layerscape/patches/010-gcc11.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/package/boot/tfa-layerscape/patches/010-gcc11.patch b/package/boot/tfa-layerscape/patches/010-gcc11.patch deleted file mode 100644 index 1cdc21a493..0000000000 --- a/package/boot/tfa-layerscape/patches/010-gcc11.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/common/runtime_svc.c -+++ b/common/runtime_svc.c -@@ -38,7 +38,7 @@ uintptr_t handle_runtime_svc(uint32_t smc_fid, - u_register_t x1, x2, x3, x4; - int index; - unsigned int idx; -- const rt_svc_desc_t *rt_svc_descs; -+ rt_svc_desc_t *rt_svc_descs = NULL; - - assert(handle); - idx = get_unique_oen_from_smc_fid(smc_fid); -@@ -48,7 +48,7 @@ uintptr_t handle_runtime_svc(uint32_t smc_fid, - if (index < 0 || index >= (int)RT_SVC_DECS_NUM) - SMC_RET1(handle, SMC_UNK); - -- rt_svc_descs = (rt_svc_desc_t *) RT_SVC_DESCS_START; -+ memcpy(rt_svc_descs, (rt_svc_desc_t *)RT_SVC_DESCS_START, MAX_RT_SVCS); - - get_smc_params_from_ctx(handle, x1, x2, x3, x4); - |