diff options
author | Venki Pallipadi <venkatesh.pallipadi@intel.com> | 2007-05-22 15:35:24 -0700 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-05-24 10:14:30 -0700 |
commit | ce45b51ac4c3c575c71ab5c91c29bf34c2af6f7d (patch) | |
tree | 1f82d87af33434947f92708552b4f27e520fb08e /arch/ia64/kernel/acpi-processor.c | |
parent | d86ebd140963e50238ac397074b1ab7fc7ec1126 (diff) |
[IA64] Fix using uninitialized data in _PDC setup
Silly bug in _PDC data setup. Haven't seen any real side-effects of this one
yet. But, needs fixing regardless.
Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel/acpi-processor.c')
-rw-r--r-- | arch/ia64/kernel/acpi-processor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/acpi-processor.c b/arch/ia64/kernel/acpi-processor.c index 4d4993a47e55..5a216c019924 100644 --- a/arch/ia64/kernel/acpi-processor.c +++ b/arch/ia64/kernel/acpi-processor.c @@ -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; |