mirror of https://gitee.com/openkylin/linux.git
[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:
parent
fba670013d
commit
74343ee4cd
|
@ -16,6 +16,6 @@
|
||||||
/*
|
/*
|
||||||
* Physical DRAM offset.
|
* Physical DRAM offset.
|
||||||
*/
|
*/
|
||||||
#define PHYS_OFFSET (0x80000000)
|
#define PHYS_OFFSET UL(0x80000000)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue