diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-11-30 12:43:34 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-11-30 12:43:34 +0100 |
commit | 74343ee4cd4141ddd64b1be72e17669fe3606611 (patch) | |
tree | f0fcadc00f43ebbd664051b53ae022f9e14ceb4a /arch/arm/mach-pnx4008/include | |
parent | Merge branch 's3c-moves2' of git://aeryn.fluff.org.uk/bjdooks/linux into devel (diff) | |
download | linux-74343ee4cd4141ddd64b1be72e17669fe3606611.tar.xz linux-74343ee4cd4141ddd64b1be72e17669fe3606611.zip |
[ARM] pnx4008: fix definition of PHYS_OFFSET
PHYS_OFFSET constants should be defined using UL().
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pnx4008/include')
-rw-r--r-- | arch/arm/mach-pnx4008/include/mach/memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pnx4008/include/mach/memory.h b/arch/arm/mach-pnx4008/include/mach/memory.h index b38d50c156c4..0e8770081058 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 |