浏览代码

[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>
Russell King 17 年之前
父节点
当前提交
74343ee4cd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/arm/mach-pnx4008/include/mach/memory.h

+ 1 - 1
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