Skip to content

Commit

Permalink
[sival,rstmgr] Remove workaround for lowRISC#13098
Browse files Browse the repository at this point in the history
Signed-off-by: Guillermo Maturana <[email protected]>
  • Loading branch information
matutem committed Nov 22, 2024
1 parent 9005ac5 commit d5309e9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sw/device/tests/rstmgr_alert_info_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -754,8 +754,7 @@ bool test_main(void) {
LOG_INFO("reset info = 0x%02X", rst_info);
global_alert_called = 0;

// TODO(#13098): Change to equality after #13277 is merged.
if (rst_info & kDifRstmgrResetInfoPor) {
if (rst_info == kDifRstmgrResetInfoPor) {
// Initialize the counter. Upon POR they have random values.
CHECK_STATUS_OK(ret_sram_testutils_counter_clear(kEventCounter));
CHECK_STATUS_OK(ret_sram_testutils_counter_get(kEventCounter, &event_idx));
Expand Down

0 comments on commit d5309e9

Please sign in to comment.