diff options
| author | Harrison Mutai <harrison.mutai@arm.com> | 2026-06-30 15:41:29 +0000 |
|---|---|---|
| committer | TrustedFirmware Code Review <review@review.trustedfirmware.org> | 2026-06-30 15:41:29 +0000 |
| commit | 1836963e944169f13a2f7d6947a5b59232c48369 (patch) | |
| tree | f93b8ce5b10473d0fe73f671c9ccb0278f462140 | |
| parent | a0b0452186ef40ee5dee6de35fc3bfacbf2efe10 (diff) | |
| parent | c02a89b2d330b93d7df1b8b0afb5cd73c39bd285 (diff) | |
| download | arm-trusted-firmware-1836963e944169f13a2f7d6947a5b59232c48369.tar.gz arm-trusted-firmware-1836963e944169f13a2f7d6947a5b59232c48369.zip | |
Merge "fix(io): use simple braces for uuid_null definition" into integration
| -rw-r--r-- | drivers/io/io_fip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/io/io_fip.c b/drivers/io/io_fip.c index dd7800507..f06e98a2f 100644 --- a/drivers/io/io_fip.c +++ b/drivers/io/io_fip.c @@ -309,7 +309,7 @@ static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec, int result; uintptr_t backend_handle; const io_uuid_spec_t *uuid_spec = (io_uuid_spec_t *)spec; - static const uuid_t uuid_null = { {0} }; /* Double braces for clang */ + static const uuid_t uuid_null = { 0U }; size_t bytes_read; size_t toc_offset; size_t fip_size; |
