Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b5556a67f08559b6c1597f6396c1f9ef460f62b4
Commit:     b5556a67f08559b6c1597f6396c1f9ef460f62b4
Parent:     d7ac12fa05ed839d5a426795409fdf1a480e3f7a
Author:     Harvey Harrison <[EMAIL PROTECTED]>
AuthorDate: Wed Feb 6 22:39:44 2008 +0100
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Wed Feb 6 22:39:44 2008 +0100

    cpuidle: dubious one-bit signed bitfield in cpuidle.h
    
    fix these sparse warnings:
    
      CHECK   arch/x86/kernel/acpi/cstate.c
    include/linux/cpuidle.h:82:17: error: dubious one-bit signed bitfield
      CHECK   arch/x86/kernel/acpi/processor.c
    include/linux/cpuidle.h:82:17: error: dubious one-bit signed bitfield
      CHECK   arch/x86/kernel/cpu/cpufreq/powernow-k7.c
    include/linux/cpuidle.h:82:17: error: dubious one-bit signed bitfield
      CHECK   arch/x86/kernel/cpu/cpufreq/powernow-k8.c
    include/linux/cpuidle.h:82:17: error: dubious one-bit signed bitfield
      CHECK   arch/x86/kernel/cpu/cpufreq/longhaul.c
    include/linux/cpuidle.h:82:17: error: dubious one-bit signed bitfield
      CHECK   arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c
    include/linux/cpuidle.h:82:17: error: dubious one-bit signed bitfield
    
    Signed-off-by: Harvey Harrison <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
---
 include/linux/cpuidle.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h
index c4e0016..b0fd85a 100644
--- a/include/linux/cpuidle.h
+++ b/include/linux/cpuidle.h
@@ -79,7 +79,7 @@ struct cpuidle_state_kobj {
 };
 
 struct cpuidle_device {
-       int                     enabled:1;
+       unsigned int            enabled:1;
        unsigned int            cpu;
 
        int                     last_residency;
-
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