diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-31 09:18:40 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-31 15:30:47 -0400 |
commit | e11dadabf443dc3101f28b74d8b9d56870a87db4 (patch) | |
tree | 722c88b59aef0a7ac0252bc629e89232d77a3d74 /arch/x86/kernel/setup.c | |
parent | bc07844a33734c4b2f32ef26d942d2f3ef9302ea (diff) |
x86: apic namespace cleanup
boot_cpu_physical_apicid is a global variable and used as function
argument as well. Rename the function arguments to avoid confusion.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r-- | arch/x86/kernel/setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index 2d93026af7c..fda22ec1a93 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c | |||
@@ -129,9 +129,9 @@ int default_cpu_present_to_apicid(int mps_cpu) | |||
129 | return __default_cpu_present_to_apicid(mps_cpu); | 129 | return __default_cpu_present_to_apicid(mps_cpu); |
130 | } | 130 | } |
131 | 131 | ||
132 | int default_check_phys_apicid_present(int boot_cpu_physical_apicid) | 132 | int default_check_phys_apicid_present(int phys_apicid) |
133 | { | 133 | { |
134 | return __default_check_phys_apicid_present(boot_cpu_physical_apicid); | 134 | return __default_check_phys_apicid_present(phys_apicid); |
135 | } | 135 | } |
136 | #endif | 136 | #endif |
137 | 137 | ||