Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f998c9c0 authored by David S. Miller's avatar David S. Miller
Browse files

sparc64: Fix inconsistent max-physical-address defines.



Some parts of the code use '41' others use '42', make them
all use the same value.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Acked-by: default avatarBob Picco <bob.picco@oracle.com>
parent bb7b4353
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -3,9 +3,11 @@

#ifdef __KERNEL__

#include <asm/page.h>

#define SECTION_SIZE_BITS       30
#define MAX_PHYSADDR_BITS       42
#define MAX_PHYSMEM_BITS        42
#define MAX_PHYSADDR_BITS       MAX_PHYS_ADDRESS_BITS
#define MAX_PHYSMEM_BITS        MAX_PHYS_ADDRESS_BITS

#endif /* !(__KERNEL__) */