Replace spaces with tabs in the access test wrapper to adhere to the preferred style. No functional change intended. Signed-off-by: Sean Christopherson <seanjc@xxxxxxxxxx> --- x86/access_test.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/x86/access_test.c b/x86/access_test.c index 67e9a080..74360698 100644 --- a/x86/access_test.c +++ b/x86/access_test.c @@ -5,22 +5,22 @@ int main(void) { - int r; + int r; - printf("starting test\n\n"); - r = ac_test_run(PT_LEVEL_PML4); + printf("starting test\n\n"); + r = ac_test_run(PT_LEVEL_PML4); #ifndef CONFIG_EFI - /* - * Not supported yet for UEFI, because setting up 5 - * level page table requires entering real mode. - */ - if (this_cpu_has(X86_FEATURE_LA57)) { - printf("starting 5-level paging test.\n\n"); - setup_5level_page_table(); - r = ac_test_run(PT_LEVEL_PML5); - } + /* + * Not supported yet for UEFI, because setting up 5 + * level page table requires entering real mode. + */ + if (this_cpu_has(X86_FEATURE_LA57)) { + printf("starting 5-level paging test.\n\n"); + setup_5level_page_table(); + r = ac_test_run(PT_LEVEL_PML5); + } #endif - return r ? 0 : 1; + return r ? 0 : 1; } -- 2.40.0.348.gf938b09366-goog