x86/apic: Make apic_bsp_setup() static
authorThomas Gleixner <tglx@linutronix.de>
Sun, 16 Jun 2019 13:41:24 +0000 (15:41 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 16 Jun 2019 19:27:35 +0000 (21:27 +0200)
No user outside of apic.c. Remove the stale and bogus function comment
while at it.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/include/asm/apic.h
arch/x86/kernel/apic/apic.c

index fc505a84aa936652f40c2beda2703ea874169933..c986e32b5a481b5b6578475de7a1c7fcb6a74b03 100644 (file)
@@ -154,7 +154,6 @@ static inline int apic_force_enable(unsigned long addr)
 extern int apic_force_enable(unsigned long addr);
 #endif
 
-extern void apic_bsp_setup(bool upmode);
 extern void apic_ap_setup(void);
 
 /*
index 93de7862eef8b512c5774f488360f4b82982ef53..dc4ed655dbbbf90a337a2434225e096a5cca1f1f 100644 (file)
@@ -1350,6 +1350,8 @@ void __init init_bsp_APIC(void)
        apic_write(APIC_LVT1, value);
 }
 
+static void __init apic_bsp_setup(bool upmode);
+
 /* Init the interrupt delivery mode for the BSP */
 void __init apic_intr_mode_init(void)
 {
@@ -2414,11 +2416,8 @@ static void __init apic_bsp_up_setup(void)
 /**
  * apic_bsp_setup - Setup function for local apic and io-apic
  * @upmode:            Force UP mode (for APIC_init_uniprocessor)
- *
- * Returns:
- * apic_id of BSP APIC
  */
-void __init apic_bsp_setup(bool upmode)
+static void __init apic_bsp_setup(bool upmode)
 {
        connect_bsp_APIC();
        if (upmode)