Optee_os recipes modification et al.
[AGL/meta-agl.git] / meta-agl-bsp / meta-rcar-gen3 / recipes-bsp / optee / optee-examples / 0001-secure_storage-ta-Add-a-missing-include-file.patch
1 From be7079678aeb1503e0f681d977c47c44fd7b4f8c Mon Sep 17 00:00:00 2001
2 From: Pierre Marzin <pierre.marzin@iot.bzh>
3 Date: Mon, 19 Aug 2019 09:33:17 +0000
4 Subject: [PATCH] secure_storage: ta: Add a missing include file
5
6 The commit 9890a50d3c26b377dcb27f5db680018e15a5a3de fix a size type by
7 using a format macro contant 'PRIu32' into a printf. This needs the
8 inttypes.h header file to build correctly with aarch64-linux-gnu-gcc.
9
10 Signed-off-by: Pierre Marzin <pierre.marzin@iot.bzh>
11 ---
12  secure_storage/ta/secure_storage_ta.c | 1 +
13  1 file changed, 1 insertion(+)
14
15 diff --git a/secure_storage/ta/secure_storage_ta.c b/secure_storage/ta/secure_storage_ta.c
16 index 3ccc12d..cfdfbb6 100644
17 --- a/secure_storage/ta/secure_storage_ta.c
18 +++ b/secure_storage/ta/secure_storage_ta.c
19 @@ -28,6 +28,7 @@
20  #include <secure_storage_ta.h>
21  #include <tee_internal_api.h>
22  #include <tee_internal_api_extensions.h>
23 +#include <inttypes.h>
24  
25  static TEE_Result delete_object(uint32_t param_types, TEE_Param params[4])
26  {
27 -- 
28 2.11.0
29