sparc: fix printk format warning: fs/proc/proc_misc.c:195: warning: long unsigned int format, unsigned int arg (arg 23)
Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]> diffstat:= include/asm-sparc/vaddrs.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -Naurp ./include/asm-sparc/vaddrs.h~proc_misc_printk ./include/asm-sparc/vaddrs.h --- ./include/asm-sparc/vaddrs.h~proc_misc_printk 2004-12-24 13:33:49.000000000 -0800 +++ ./include/asm-sparc/vaddrs.h 2005-03-01 16:58:02.249595144 -0800 @@ -35,10 +35,10 @@ #define IOBASE_VADDR 0xfe000000 #define IOBASE_END 0xfe600000 -#define VMALLOC_START 0xfe600000 +#define VMALLOC_START 0xfe600000UL /* XXX Alter this when I get around to fixing sun4c - Anton */ -#define VMALLOC_END 0xffc00000 +#define VMALLOC_END 0xffc00000UL /* * On the sun4/4c we need a place --- - To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
