Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ce45b51ac4c3c575c71ab5c91c29bf34c2af6f7d
Commit:     ce45b51ac4c3c575c71ab5c91c29bf34c2af6f7d
Parent:     d86ebd140963e50238ac397074b1ab7fc7ec1126
Author:     Venki Pallipadi <[EMAIL PROTECTED]>
AuthorDate: Tue May 22 15:35:24 2007 -0700
Committer:  Tony Luck <[EMAIL PROTECTED]>
CommitDate: Thu May 24 10:14:30 2007 -0700

    [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 <[EMAIL PROTECTED]>
    Signed-off-by: Tony Luck <[EMAIL PROTECTED]>
---
 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 4d4993a..5a216c0 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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to