[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1504774161-7137-1-git-send-email-douly.fnst@cn.fujitsu.com>
Date: Thu, 7 Sep 2017 16:49:20 +0800
From: Dou Liyang <douly.fnst@...fujitsu.com>
To: <x86@...nel.org>, <linux-kernel@...r.kernel.org>
CC: <tglx@...utronix.de>, <mingo@...nel.org>, <hpa@...or.com>,
<bhe@...hat.com>, Dou Liyang <douly.fnst@...fujitsu.com>
Subject: [PATCH 1/2] x86/apic: Remove duplicate judgement of X86_64 in lapic_is_integrated()
The macro APIC_INTEGRATED(x) has already wrapped by CONFIG_X86_32. So
Invoke it directly.
But lapic_is_integrated() invokes APIC_INTEGRATED(x) with the duplicate
judgement of X86_64.
Remove the "#ifdef CONFIG_X86_64...". No functionality change.
Signed-off-by: Dou Liyang <douly.fnst@...fujitsu.com>
---
arch/x86/kernel/apic/apic.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index 7834f73..63b3ae9 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -211,11 +211,7 @@ static inline int lapic_get_version(void)
*/
static inline int lapic_is_integrated(void)
{
-#ifdef CONFIG_X86_64
- return 1;
-#else
return APIC_INTEGRATED(lapic_get_version());
-#endif
}
/*
--
2.5.5
Powered by blists - more mailing lists