This is an automated email from the ASF dual-hosted git repository.

ivila pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/teaclave-trustzone-sdk.git


The following commit(s) were added to refs/heads/main by this push:
     new 1eeb1f4  optee-utee: correct return type in property for binary version
1eeb1f4 is described below

commit 1eeb1f41d08f75199d6a93643100046c2d4bd868
Author: Matthew Shyu <[email protected]>
AuthorDate: Thu May 14 14:51:53 2026 +0800

    optee-utee: correct return type in property for binary version
    
    In optee, the type defined for
    "gpd.tee.trustedos.implementation.binaryversion" and
    "gpd.tee.firmware.implementation.binaryversion"
    is USER_TA_PROP_TYPE_U32
---
 crates/optee-utee/src/property.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crates/optee-utee/src/property.rs 
b/crates/optee-utee/src/property.rs
index 3cbcd59..f5b99bf 100644
--- a/crates/optee-utee/src/property.rs
+++ b/crates/optee-utee/src/property.rs
@@ -436,7 +436,7 @@ define_property_key!(
     TeeTrustedOsImplementationBinaryVersion,
     TeeImplementation,
     "gpd.tee.trustedos.implementation.binaryversion",
-    Vec<u8>
+    u32
 );
 define_property_key!(
     TeeTrustedOsManufacturer,
@@ -454,7 +454,7 @@ define_property_key!(
     TeeFirmwareImplementationBinaryVersion,
     TeeImplementation,
     "gpd.tee.firmware.implementation.binaryversion",
-    Vec<u8>
+    u32
 );
 define_property_key!(
     TeeFirmwareManufacturer,


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to