diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2017-01-24 12:30:04 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2017-01-24 23:23:37 +0100 |
commit | 06a629e4b1b7f517866adb984c169459a9b2ecdf (patch) | |
tree | 4a2d22594180c89d8a0e2e8c244c5cc296feae36 /src/arch/x86/include | |
parent | 29c19a027af013d9fadb9b372c3378da6ed0586f (diff) | |
download | coreboot-06a629e4b1b7f517866adb984c169459a9b2ecdf.tar.xz |
arch/x86: do not define type of SPIN_LOCK_UNLOCKED
This fixes building coreboot with -std=gnu11 on gcc 4.9.x
Also needs fix ups for asus/kcma-d8 and asus/kgpe-d16 due to the missing
type.
Change-Id: I920d492a1422433d7d4b4659b27f5a22914bc438
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: https://review.coreboot.org/18220
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/arch/x86/include')
-rw-r--r-- | src/arch/x86/include/arch/smp/spinlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/include/arch/smp/spinlock.h b/src/arch/x86/include/arch/smp/spinlock.h index 24f52f18b0..767f96e259 100644 --- a/src/arch/x86/include/arch/smp/spinlock.h +++ b/src/arch/x86/include/arch/smp/spinlock.h @@ -36,7 +36,7 @@ spinlock_t* romstage_microcode_cbfs_lock(void); void initialize_romstage_microcode_cbfs_lock(void); #endif -#define SPIN_LOCK_UNLOCKED (spinlock_t) { 1 } +#define SPIN_LOCK_UNLOCKED { 1 } #ifndef __PRE_RAM__ #define DECLARE_SPIN_LOCK(x) static spinlock_t x = SPIN_LOCK_UNLOCKED; |