From: Ralf Baechle Date: Tue, 1 Nov 2005 00:06:22 +0000 (+0000) Subject: Remove UL from constants. X-Git-Tag: linux-2.6.15-rc1 X-Git-Url: http://www.linux-mips.org/git?p=linux.git;a=commitdiff;h=bda331a800f521b7cb6a3104e0364587e590aee0 Remove UL from constants. Gas doesn't like UL in constants. Signed-off-by: Ralf Baechle --- --- a/include/asm-mips/mach-ip27/spaces.h +++ b/include/asm-mips/mach-ip27/spaces.h @@ -14,13 +14,13 @@ * IP27 uses the R10000's uncached attribute feature. Attribute 3 selects * uncached memory addressing. */ -#define CAC_BASE 0xa800000000000000UL +#define CAC_BASE 0xa800000000000000 -#define HSPEC_BASE 0x9000000000000000UL -#define IO_BASE 0x9200000000000000UL -#define MSPEC_BASE 0x9400000000000000UL -#define UNCAC_BASE 0x9600000000000000UL -#define MAP_BASE 0xc000000000000000UL +#define HSPEC_BASE 0x9000000000000000 +#define IO_BASE 0x9200000000000000 +#define MSPEC_BASE 0x9400000000000000 +#define UNCAC_BASE 0x9600000000000000 +#define MAP_BASE 0xc000000000000000 #define TO_PHYS(x) ( ((x) & TO_PHYS_MASK)) #define TO_CAC(x) (CAC_BASE | ((x) & TO_PHYS_MASK))