diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-06-16 18:02:33 +0300 |
---|---|---|
committer | Sean Christopherson <seanjc@google.com> | 2023-06-16 12:12:10 -0700 |
commit | fb1273635f8c38df18483ffcd038a5b792dfcc94 (patch) | |
tree | 08e50297ebefc5e9703f43243b09b27762c480c5 /arch | |
parent | a30642570855faa1992f333ce5cb60351b0a37da (diff) |
KVM: x86: Remove PRIx* definitions as they are solely for user space
In the Linux kernel we do not support PRI.64 specifiers.
Moreover they seem not to be used anyway here. Drop them.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230616150233.83813-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kvm/lapic.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c index e542cf285b51..58ee570db395 100644 --- a/arch/x86/kvm/lapic.c +++ b/arch/x86/kvm/lapic.c @@ -51,11 +51,6 @@ #define mod_64(x, y) ((x) % (y)) #endif -#define PRId64 "d" -#define PRIx64 "llx" -#define PRIu64 "u" -#define PRIo64 "o" - /* 14 is the version for Xeon and Pentium 8.4.8*/ #define APIC_VERSION 0x14UL #define LAPIC_MMIO_LENGTH (1 << 12) |