mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 21:52:04 +00:00
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6: [IA64] acpi_get_sysname() should be __init [IA64] Cleanup acpi header to reuse the generic _PDC defines [IA64] Fix using uninitialized data in _PDC setup [IA64] start_secondary() and smp_callin() should be __cpuinit
This commit is contained in:
commit
9059b45424
@ -44,7 +44,7 @@ static void init_intel_pdc(struct acpi_processor *pr)
|
||||
|
||||
buf[0] = ACPI_PDC_REVISION_ID;
|
||||
buf[1] = 1;
|
||||
buf[2] |= ACPI_PDC_EST_CAPABILITY_SMP;
|
||||
buf[2] = ACPI_PDC_EST_CAPABILITY_SMP;
|
||||
|
||||
obj->type = ACPI_TYPE_BUFFER;
|
||||
obj->buffer.length = 12;
|
||||
|
@ -67,7 +67,8 @@ EXPORT_SYMBOL(pm_power_off);
|
||||
unsigned int acpi_cpei_override;
|
||||
unsigned int acpi_cpei_phys_cpuid;
|
||||
|
||||
const char *acpi_get_sysname(void)
|
||||
const char __init *
|
||||
acpi_get_sysname(void)
|
||||
{
|
||||
#ifdef CONFIG_IA64_GENERIC
|
||||
unsigned long rsdp_phys;
|
||||
|
@ -370,7 +370,7 @@ smp_setup_percpu_timer (void)
|
||||
{
|
||||
}
|
||||
|
||||
static void __devinit
|
||||
static void __cpuinit
|
||||
smp_callin (void)
|
||||
{
|
||||
int cpuid, phys_id, itc_master;
|
||||
@ -456,7 +456,7 @@ smp_callin (void)
|
||||
/*
|
||||
* Activate a secondary processor. head.S calls this.
|
||||
*/
|
||||
int __devinit
|
||||
int __cpuinit
|
||||
start_secondary (void *unused)
|
||||
{
|
||||
/* Early console may use I/O ports */
|
||||
|
@ -30,6 +30,8 @@
|
||||
|
||||
#ifdef __KERNEL__
|
||||
|
||||
#include <acpi/pdc_intel.h>
|
||||
|
||||
#include <linux/init.h>
|
||||
#include <linux/numa.h>
|
||||
#include <asm/system.h>
|
||||
@ -119,11 +121,6 @@ extern int __devinitdata pxm_to_nid_map[MAX_PXM_DOMAINS];
|
||||
extern int __initdata nid_to_pxm_map[MAX_NUMNODES];
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Refer Intel ACPI _PDC support document for bit definitions
|
||||
*/
|
||||
#define ACPI_PDC_EST_CAPABILITY_SMP 0x8
|
||||
|
||||
#endif /*__KERNEL__*/
|
||||
|
||||
#endif /*_ASM_ACPI_H*/
|
||||
|
Loading…
Reference in New Issue
Block a user