• H
    x86: fix sparse warnings in cpu/common.c · 4a148513
    Harvey Harrison 提交于
    The casts will always be needed, may as well make them the right
    signedness.  The ebx variables can easily be unsigned, may as well.
    
    arch/x86/kernel/cpu/common.c:261:21: warning: incorrect type in argument 2 (different signedness)
    arch/x86/kernel/cpu/common.c:261:21:    expected unsigned int *eax
    arch/x86/kernel/cpu/common.c:261:21:    got int *<noident>
    arch/x86/kernel/cpu/common.c:262:9: warning: incorrect type in argument 3 (different signedness)
    arch/x86/kernel/cpu/common.c:262:9:    expected unsigned int *ebx
    arch/x86/kernel/cpu/common.c:262:9:    got int *<noident>
    arch/x86/kernel/cpu/common.c:263:9: warning: incorrect type in argument 4 (different signedness)
    arch/x86/kernel/cpu/common.c:263:9:    expected unsigned int *ecx
    arch/x86/kernel/cpu/common.c:263:9:    got int *<noident>
    arch/x86/kernel/cpu/common.c:264:9: warning: incorrect type in argument 5 (different signedness)
    arch/x86/kernel/cpu/common.c:264:9:    expected unsigned int *edx
    arch/x86/kernel/cpu/common.c:264:9:    got int *<noident>
    arch/x86/kernel/cpu/common.c:293:30: warning: incorrect type in argument 3 (different signedness)
    arch/x86/kernel/cpu/common.c:293:30:    expected unsigned int *ebx
    arch/x86/kernel/cpu/common.c:293:30:    got int *<noident>
    arch/x86/kernel/cpu/common.c:350:22: warning: incorrect type in argument 2 (different signedness)
    arch/x86/kernel/cpu/common.c:350:22:    expected unsigned int *eax
    arch/x86/kernel/cpu/common.c:350:22:    got int *<noident>
    arch/x86/kernel/cpu/common.c:351:10: warning: incorrect type in argument 3 (different signedness)
    arch/x86/kernel/cpu/common.c:351:10:    expected unsigned int *ebx
    arch/x86/kernel/cpu/common.c:351:10:    got int *<noident>
    arch/x86/kernel/cpu/common.c:352:10: warning: incorrect type in argument 4 (different signedness)
    arch/x86/kernel/cpu/common.c:352:10:    expected unsigned int *ecx
    arch/x86/kernel/cpu/common.c:352:10:    got int *<noident>
    arch/x86/kernel/cpu/common.c:353:10: warning: incorrect type in argument 5 (different signedness)
    arch/x86/kernel/cpu/common.c:353:10:    expected unsigned int *edx
    arch/x86/kernel/cpu/common.c:353:10:    got int *<noident>
    arch/x86/kernel/cpu/common.c:362:30: warning: incorrect type in argument 3 (different signedness)
    arch/x86/kernel/cpu/common.c:362:30:    expected unsigned int *ebx
    arch/x86/kernel/cpu/common.c:362:30:    got int *<noident>
    Signed-off-by: NHarvey Harrison <harvey.harrison@gmail.com>
    Signed-off-by: NIngo Molnar <mingo@elte.hu>
    4a148513
common.c 18.3 KB