Explorar o código

[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 %!s(int64=17) %!d(string=hai) anos
pai
achega
74343ee4cd
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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