From b66b504cf63b24b9e12b93e8d9941d547b50f104 Mon Sep 17 00:00:00 2001 From: Wardenjohn Date: Tue, 8 Aug 2023 11:25:31 +0800 Subject: [PATCH] create-diff-object: fix s390 special_section initializer spacing commit 87ad96760a3af0db294d44865dfa1703f57f5595 upstream Align the s390 special_section initializers to improve readability and for consistency with the rest. Signed-off-by: Josh Poimboeuf Signed-off-by: Wardenjohn --- kpatch-build/create-diff-object.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/kpatch-build/create-diff-object.c b/kpatch-build/create-diff-object.c index 81b4195..72c0be4 100644 --- a/kpatch-build/create-diff-object.c +++ b/kpatch-build/create-diff-object.c @@ -2410,29 +2410,29 @@ static struct special_section special_sections[] = { .group_size = fixup_barrier_nospec_group_size, }, { - .name = ".s390_return_mem", - .arch = S390, - .group_size = s390_expolines_group_size, + .name = ".s390_return_mem", + .arch = S390, + .group_size = s390_expolines_group_size, }, { - .name = ".s390_return_reg", - .arch = S390, - .group_size = s390_expolines_group_size, + .name = ".s390_return_reg", + .arch = S390, + .group_size = s390_expolines_group_size, }, { - .name = ".s390_indirect_call", - .arch = S390, - .group_size = s390_expolines_group_size, + .name = ".s390_indirect_call", + .arch = S390, + .group_size = s390_expolines_group_size, }, { - .name = ".s390_indirect_branches", - .arch = S390, - .group_size = s390_expolines_group_size, + .name = ".s390_indirect_branches", + .arch = S390, + .group_size = s390_expolines_group_size, }, { - .name = ".s390_indirect_jump", - .arch = S390, - .group_size = s390_expolines_group_size, + .name = ".s390_indirect_jump", + .arch = S390, + .group_size = s390_expolines_group_size, }, {}, }; -- Gitee