Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b25e75899e449456409cfa1a3b042257c03d4355
Commit:     b25e75899e449456409cfa1a3b042257c03d4355
Parent:     e32d22f77666312648735f7cda0a114a8242b9d8
Author:     Dave Young <[EMAIL PROTECTED]>
AuthorDate: Wed Nov 21 14:52:15 2007 -0800
Committer:  Dave Jones <[EMAIL PROTECTED]>
CommitDate: Wed Feb 6 22:57:58 2008 -0500

    [CPUFREQ] gx-suspmod.c: use boot_cpu_data instead of current_cpu_data
    
    In preemptible kernel will report BUG: using smp_processor_id() in
    preemptible, so use boot_cpu_data instead of current_cpu_data.
    
    discussion in :
    http://lkml.org/lkml/2007/7/25/32
    
    Signed-off-by: Dave Young <[EMAIL PROTECTED]>
    CC: <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Dave Jones <[EMAIL PROTECTED]>
---
 arch/x86/kernel/cpu/cpufreq/gx-suspmod.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kernel/cpu/cpufreq/gx-suspmod.c 
b/arch/x86/kernel/cpu/cpufreq/gx-suspmod.c
index 2ed7db2..9d9eae8 100644
--- a/arch/x86/kernel/cpu/cpufreq/gx-suspmod.c
+++ b/arch/x86/kernel/cpu/cpufreq/gx-suspmod.c
@@ -181,8 +181,8 @@ static __init struct pci_dev *gx_detect_chipset(void)
        struct pci_dev *gx_pci = NULL;
 
        /* check if CPU is a MediaGX or a Geode. */
-       if ((current_cpu_data.x86_vendor != X86_VENDOR_NSC) &&
-           (current_cpu_data.x86_vendor != X86_VENDOR_CYRIX)) {
+       if ((boot_cpu_data.x86_vendor != X86_VENDOR_NSC) &&
+           (boot_cpu_data.x86_vendor != X86_VENDOR_CYRIX)) {
                dprintk("error: no MediaGX/Geode processor found!\n");
                return NULL;
        }
-
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