소스 검색

[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