diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-05-31 10:53:18 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-06-10 20:57:41 +0000 |
commit | 08f4526b53ba001b72373bccbbfb8b52e1b0eb5a (patch) | |
tree | 72e6de574b6102cbf5e8bb9168c3ae911bda05f5 /src/include/cpu | |
parent | 146508d7495c443a6f59267a13d617e9a0ae031e (diff) |
cpu/x86/lapic: Drop read/write_around aliases
Change-Id: Ia3935524e57885ca79586f1f4612020bb05956ab
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55195
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/include/cpu')
-rw-r--r-- | src/include/cpu/x86/lapic.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/cpu/x86/lapic.h b/src/include/cpu/x86/lapic.h index d5e5edca9a..4fbae88ca5 100644 --- a/src/include/cpu/x86/lapic.h +++ b/src/include/cpu/x86/lapic.h @@ -40,9 +40,6 @@ static __always_inline int xapic_busy(void) return xapic_read(LAPIC_ICR) & LAPIC_ICR_BUSY; } -#define lapic_read_around(x) lapic_read(x) -#define lapic_write_around(x, y) xapic_write_atomic((x), (y)) - static __always_inline uint32_t x2apic_read(unsigned int reg) { uint32_t value, index; |