diff options
| author | Heinrich Schuchardt <[email protected]> | 2017-10-13 01:00:05 +0200 |
|---|---|---|
| committer | Alexander Graf <[email protected]> | 2017-10-13 10:24:22 +0200 |
| commit | abe994633b2ad56c5eea87c9253873f41dab477d (patch) | |
| tree | 6ae531c2c3e7d20f6f6041e0548cdd8b77df96b7 /lib | |
| parent | 2d5dc2a52d412964031c9920d354ad5bdc91c654 (diff) | |
efi_selftest: correctly check return values
When cancelling the timer we should check the return
value provided by the set_timer service.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_selftest/efi_selftest_events.c | 2 | ||||
| -rw-r--r-- | lib/efi_selftest/efi_selftest_tpl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/efi_selftest/efi_selftest_events.c b/lib/efi_selftest/efi_selftest_events.c index b2cdc150da2..081f31257fb 100644 --- a/lib/efi_selftest/efi_selftest_events.c +++ b/lib/efi_selftest/efi_selftest_events.c @@ -186,7 +186,7 @@ static int execute(void) return EFI_ST_FAILURE; } ret = boottime->set_timer(event_wait, EFI_TIMER_STOP, 0); - if (index != 0) { + if (ret != EFI_SUCCESS) { efi_st_error("Could not cancel timer\n"); return EFI_ST_FAILURE; } diff --git a/lib/efi_selftest/efi_selftest_tpl.c b/lib/efi_selftest/efi_selftest_tpl.c index b8c0e70262d..ddb67ed268b 100644 --- a/lib/efi_selftest/efi_selftest_tpl.c +++ b/lib/efi_selftest/efi_selftest_tpl.c @@ -207,7 +207,7 @@ static int execute(void) return EFI_ST_FAILURE; } ret = boottime->set_timer(event_wait, EFI_TIMER_STOP, 0); - if (index != 0) { + if (ret != EFI_SUCCESS) { efi_st_error("Could not cancel timer\n"); return EFI_ST_FAILURE; } |
