diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-02-09 14:27:09 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-11 10:22:07 +0000 |
commit | f26b2e5c918197edfa32a8a6b32fa3634cf2da5c (patch) | |
tree | 8d86b725faa248f2ff6d2db5e4916dc9e41b87eb /src/arch/x86/id.S | |
parent | 89c05c56c0396d69211d7f077168306245b995fa (diff) | |
download | coreboot-f26b2e5c918197edfa32a8a6b32fa3634cf2da5c.tar.xz |
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>
Diffstat (limited to 'src/arch/x86/id.S')
-rw-r--r-- | src/arch/x86/id.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/id.S b/src/arch/x86/id.S index 574a7dcb91..b569178ab8 100644 --- a/src/arch/x86/id.S +++ b/src/arch/x86/id.S @@ -12,11 +12,11 @@ part: .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 |