diff options
author | Sudeep Holla <sudeep.holla@arm.com> | 2025-02-17 15:38:43 +0000 |
---|---|---|
committer | Sudeep Holla <sudeep.holla@arm.com> | 2025-02-17 15:42:03 +0000 |
commit | b7c9f32614f17c76ab26b8ee0109c868d7e054fe (patch) | |
tree | 51a1b4db88fbb30a942924a34946ab7ce2209ebc /include/linux/arm_ffa.h | |
parent | 1ed14652dc324d676f4a93643f3526738ea18214 (diff) |
firmware: arm_ffa: Replace UUID buffer to standard UUID format
Currently ffa_partition_info structure holds the UUID in the format
compatible with the firmware interface. However, most of the functions
in the FF-A core driver deals directly with uuid_t type.
Replace UUID buffer to standard UUID format in the ffa_partition_info
structure.
Tested-by: Viresh Kumar <viresh.kumar@linaro.org>
Message-Id: <20250217-ffa_updates-v3-2-bd1d9de615e7@arm.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Diffstat (limited to 'include/linux/arm_ffa.h')
-rw-r--r-- | include/linux/arm_ffa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/arm_ffa.h b/include/linux/arm_ffa.h index 74169dd0f659..abd0208f0f74 100644 --- a/include/linux/arm_ffa.h +++ b/include/linux/arm_ffa.h @@ -238,7 +238,7 @@ struct ffa_partition_info { /* partition runs in the AArch64 execution state. */ #define FFA_PARTITION_AARCH64_EXEC BIT(8) u32 properties; - u32 uuid[4]; + uuid_t uuid; }; static inline |