arch/x86/id.S: Fix building with clang
The following error message is now gone: CC bootblock/arch/x86/id.o /tmp/id-35b17a.s:35:7: error: expected relocatable expression .long - ver ^ /tmp/id-35b17a.s:36:7: error: expected relocatable expression .long - vendor ^ /tmp/id-35b17a.s:37:7: error: expected relocatable expression .long - part ^ Tested with BUILD_TIMELESS=1 on x86_32 with gcc. The binary stays the same. Change-Id: I930e7b96c4428bcb95ff1903e6a3e7679171ffee Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/51500 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
fafcb749b4
commit
0e688b113d
|
@ -11,14 +11,8 @@ vendor:
|
||||||
part:
|
part:
|
||||||
.asciz CONFIG_MAINBOARD_PART_NUMBER
|
.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 - vendor + 1 /* Reverse offset to the vendor id */
|
||||||
.long 0xffffffff - part + 1 /* Reverse offset to the part number */
|
.long 0xffffffff - part + 1 /* Reverse offset to the part number */
|
||||||
#else
|
|
||||||
.long - ver /* Reverse offset to the version */
|
|
||||||
.long - vendor /* Reverse offset to the vendor id */
|
|
||||||
.long - part /* Reverse offset to the part number */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
.long CONFIG_ROM_SIZE /* Size of this romimage */
|
.long CONFIG_ROM_SIZE /* Size of this romimage */
|
||||||
|
|
Loading…
Reference in New Issue