Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/50429 )
Change subject: arch/x86/id.S: Remove unneeded whitespace before tab ......................................................................
arch/x86/id.S: Remove unneeded whitespace before tab
Change-Id: I053a2a8cff3fda1a1074f74e4d4c174a0cb24d86 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/50429 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Frans Hendriks fhendriks@eltan.com Reviewed-by: Angel Pons th3fanbus@gmail.com --- M src/arch/x86/id.S 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Frans Hendriks: Looks good to me, approved Angel Pons: Looks good to me, approved
diff --git a/src/arch/x86/id.S b/src/arch/x86/id.S index 574a7dc..b569178 100644 --- a/src/arch/x86/id.S +++ b/src/arch/x86/id.S @@ -12,11 +12,11 @@ .asciz CONFIG_MAINBOARD_PART_NUMBER
#if ENV_X86_64 -.long 0xffffffff - ver + 1 /* Reverse offset to the version */ +.long 0xffffffff - ver + 1 /* Reverse offset to the version */ .long 0xffffffff - vendor + 1 /* Reverse offset to the vendor id */ .long 0xffffffff - part + 1 /* Reverse offset to the part number */ #else -.long - ver /* Reverse offset to the version */ +.long - ver /* Reverse offset to the version */ .long - vendor /* Reverse offset to the vendor id */ .long - part /* Reverse offset to the part number */ #endif