From: Russell King Date: Sun, 30 Nov 2008 11:43:34 +0000 (+0000) Subject: [ARM] pnx4008: fix definition of PHYS_OFFSET X-Git-Tag: v2.6.29-rc1~559^2~55 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=74343ee4cd4141ddd64b1be72e17669fe3606611;p=linux-2.6-omap-h63xx.git [ARM] pnx4008: fix definition of PHYS_OFFSET PHYS_OFFSET constants should be defined using UL(). Signed-off-by: Russell King --- diff --git a/arch/arm/mach-pnx4008/include/mach/memory.h b/arch/arm/mach-pnx4008/include/mach/memory.h index b38d50c156c..0e877008105 100644 --- a/arch/arm/mach-pnx4008/include/mach/memory.h +++ b/arch/arm/mach-pnx4008/include/mach/memory.h @@ -16,6 +16,6 @@ /* * Physical DRAM offset. */ -#define PHYS_OFFSET (0x80000000) +#define PHYS_OFFSET UL(0x80000000) #endif