[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>
This commit is contained in:
Russell King 2008-11-30 11:43:34 +00:00 committed by Russell King
parent fba670013d
commit 74343ee4cd

View File

@ -16,6 +16,6 @@
/*
* Physical DRAM offset.
*/
#define PHYS_OFFSET (0x80000000)
#define PHYS_OFFSET UL(0x80000000)
#endif