Skip to content

Commit

Permalink
suit: Fix sizeof for cell manifest
Browse files Browse the repository at this point in the history
Fix sizeof calculation for cellular FW manifest.

Signed-off-by: Tuomas Parttimaa <[email protected]>
  • Loading branch information
parttimaa committed Dec 18, 2024
1 parent 4a2b80e commit cff225d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subsys/suit/storage/src/suit_storage_nrf9280.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ static suit_plat_err_t find_manifest_area(suit_manifest_role_t role, const uint8
break;
case SUIT_MANIFEST_NORDIC_CELLFW:
*addr = nordic_storage_cell->nordic_cell.cellfw;
*size = sizeof(nordic_storage_cell->nordic_cell.top);
*size = sizeof(nordic_storage_cell->nordic_cell.cellfw);
break;
case SUIT_MANIFEST_RAD_RECOVERY:
*addr = rad_storage->rad.recovery;
Expand Down

0 comments on commit cff225d

Please sign in to comment.