Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e160cc3f3b5c38bba79c58172e82c1e24934546
Commit:     1e160cc3f3b5c38bba79c58172e82c1e24934546
Parent:     341d8854d38fe6e7655f7748babae5c25a51aa70
Author:     Andrew Morton <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 30 13:31:17 2008 +0100
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Wed Jan 30 13:31:17 2008 +0100

    x86: __vdso_getcpu() warning fix
    
    arch/x86/vdso/vgetcpu.c: In function '__vdso_getcpu':
    arch/x86/vdso/vgetcpu.c:22: warning: pointer targets in passing argument 1 
of 'native_read_tscp' differ in signedness
    
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 include/asm-x86/msr.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/asm-x86/msr.h b/include/asm-x86/msr.h
index 040d391..088652a 100644
--- a/include/asm-x86/msr.h
+++ b/include/asm-x86/msr.h
@@ -13,7 +13,7 @@
 #include <asm/asm.h>
 #include <asm/errno.h>
 
-static inline unsigned long long native_read_tscp(int *aux)
+static inline unsigned long long native_read_tscp(unsigned int *aux)
 {
        unsigned long low, high;
        asm volatile (".byte 0x0f,0x01,0xf9"
-
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