From 9ad8a41b8cedef9ac1f0513992ce6958eb86c257 Mon Sep 17 00:00:00 2001 From: Joel Kitching Date: Thu, 2 Aug 2018 16:21:17 +0800 Subject: vboot: bulk fix tabs and spacing inconsistency Problem files were found with: find . -name '*.c' -o -name '*.h' | xargs grep '^ [^*]' and edited manually. Ignores utility/ and cgpt/, since they seem to globally adhere to a two-space tab convention. BUG=None TEST=make clean runtests TEST=emerge vboot_reference depthcharge Change-Id: I5a678484a119c8f1911f717e1968bdb4f1a0810f Reviewed-on: https://chromium-review.googlesource.com/1160131 Commit-Ready: Joel Kitching Tested-by: Joel Kitching Reviewed-by: Randall Spangler --- tests/tpm_lite/tlcl_tests.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tests/tpm_lite/tlcl_tests.h') diff --git a/tests/tpm_lite/tlcl_tests.h b/tests/tpm_lite/tlcl_tests.h index 5e23ee39..2b6bd6b8 100644 --- a/tests/tpm_lite/tlcl_tests.h +++ b/tests/tpm_lite/tlcl_tests.h @@ -16,14 +16,14 @@ /* Prints error and returns on failure */ #define TPM_CHECK(tpm_command) TPM_EXPECT(tpm_command, TPM_SUCCESS) -#define TPM_EXPECT(tpm_command, expected_result) do { \ - uint32_t _result = (tpm_command); \ - uint32_t _exp = (expected_result); \ - if (_result != _exp) { \ - printf("TEST FAILED: line %d: " #tpm_command ": 0x%x" \ - " (expecting 0x%x)\n", __LINE__, _result, _exp); \ - return _result; \ - } \ +#define TPM_EXPECT(tpm_command, expected_result) do { \ + uint32_t _result = (tpm_command); \ + uint32_t _exp = (expected_result); \ + if (_result != _exp) { \ + printf("TEST FAILED: line %d: " #tpm_command ": 0x%x" \ + " (expecting 0x%x)\n", __LINE__, _result, _exp); \ + return _result; \ + } \ } while (0) -- cgit v1.2.1