diff options
author | Keith Owens <kaos@sgi.com> | 2006-07-17 15:41:59 +1000 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2006-08-02 16:03:44 -0700 |
commit | e037cda559547e6353c5a792802963572d0b750e (patch) | |
tree | 5e76f7706d30d725f4bc80dd9b460f8a5c2da005 /include/asm-ia64/system.h | |
parent | 4f2ef124b274baac80f64e290aa44e87a7753933 (diff) | |
download | linux-3.10-e037cda559547e6353c5a792802963572d0b750e.tar.gz linux-3.10-e037cda559547e6353c5a792802963572d0b750e.tar.bz2 linux-3.10-e037cda559547e6353c5a792802963572d0b750e.zip |
[IA64] sparse cleanups
Fix some sparse warnings on ia64. Large constants that should be long
instead of int. Use NULL instead of 0. Add some missing __iomem
casts. Replace a non-C99 structure assignment.
Signed-off-by: Keith Owens <kaos@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include/asm-ia64/system.h')
-rw-r--r-- | include/asm-ia64/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ia64/system.h b/include/asm-ia64/system.h index fc9677bc87e..384fbf7f2a0 100644 --- a/include/asm-ia64/system.h +++ b/include/asm-ia64/system.h @@ -24,7 +24,7 @@ * 0xa000000000000000+2*PERCPU_PAGE_SIZE * - 0xa000000000000000+3*PERCPU_PAGE_SIZE remain unmapped (guard page) */ -#define KERNEL_START (GATE_ADDR+0x100000000) +#define KERNEL_START (GATE_ADDR+__IA64_UL_CONST(0x100000000)) #define PERCPU_ADDR (-PERCPU_PAGE_SIZE) #ifndef __ASSEMBLY__ |