commit | e5a4fddcaedea8cab2b700dcf52ff77366883160 | [log] [tgz] |
---|---|---|
author | Rob Clark <robdclark@gmail.com> | Thu Jul 27 08:04:16 2017 -0400 |
committer | Alexander Graf <agraf@suse.de> | Fri Jul 28 09:14:01 2017 +0200 |
tree | 99f6114a09b4674c3b5b0dc5ec2b4ae6ddf00cf3 | |
parent | 09c2f651fb1ab23d48e985c793356ce933e972be [diff] |
efi_loader: only evaluate EFI_EXIT()'s ret once There are a couple spots doing things like: return EFI_EXIT(some_fxn(...)); which I handn't noticed before. With addition of printing return value in the EFI_EXIT() macro, now the fxn call was getting evaluated twice. Which we didn't really want. Signed-off-by: Rob Clark <robdclark@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>