Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion soc/nordic/ironside/include/nrf_ironside/boot_report.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@
#define IRONSIDE_BOOT_REPORT_LOCAL_DOMAIN_CONTEXT_SIZE (16UL)
/** Length of the random data buffer in bytes. */
#define IRONSIDE_BOOT_REPORT_RANDOM_DATA_SIZE (32UL)
/** Length of the uuid buffer in bytes. */
#define IRONSIDE_BOOT_REPORT_UUID_SIZE (16UL)

Check notice on line 121 in soc/nordic/ironside/include/nrf_ironside/boot_report.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

soc/nordic/ironside/include/nrf_ironside/boot_report.h:121 -#define IRONSIDE_BOOT_REPORT_UUID_SIZE (16UL) +#define IRONSIDE_BOOT_REPORT_UUID_SIZE (16UL)

Check notice on line 121 in soc/nordic/ironside/include/nrf_ironside/boot_report.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

soc/nordic/ironside/include/nrf_ironside/boot_report.h:121 -#define IRONSIDE_BOOT_REPORT_UUID_SIZE (16UL) +#define IRONSIDE_BOOT_REPORT_UUID_SIZE (16UL)

Check notice on line 121 in soc/nordic/ironside/include/nrf_ironside/boot_report.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

soc/nordic/ironside/include/nrf_ironside/boot_report.h:121 -#define IRONSIDE_BOOT_REPORT_UUID_SIZE (16UL) +#define IRONSIDE_BOOT_REPORT_UUID_SIZE (16UL)
/** @brief Initialization/boot status description contained in the boot report. */
struct ironside_boot_report_init_status {
/** Reserved for Future Use. */
Expand Down Expand Up @@ -207,8 +209,10 @@
struct ironside_boot_report_init_context init_context;
/** CSPRNG data */
uint8_t random_data[IRONSIDE_BOOT_REPORT_RANDOM_DATA_SIZE];
/** Device Info data : 128-bit Universally Unique IDentifier (UUID) */
uint8_t device_info_uuid[IRONSIDE_BOOT_REPORT_UUID_SIZE];
/** Reserved for Future Use */
uint32_t rfu2[64];
uint32_t rfu2[60];
};

/**
Expand Down
Loading