diff options
| author | Aaro Koskinen <[email protected]> | 2016-05-24 17:09:30 +0300 |
|---|---|---|
| committer | Ralf Baechle <[email protected]> | 2016-10-04 16:13:57 +0200 |
| commit | 4c0f5a7124aa74b1a99035ca3d12f83c734e7fe8 (patch) | |
| tree | 0419f1d11d26717a0c2b65146021356f1f372577 | |
| parent | ef0c592ad099fd443d8aad36719f26f62acea18a (diff) | |
MIPS: Octeon: Take all memory into use by default.
Take all memory into use by default, instead of limiting to 512 MB.
Signed-off-by: Aaro Koskinen <[email protected]>
Acked-by: David Daney <[email protected]>
Cc: Sivasubramanian Palanisamy <[email protected]>
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/13353/
Signed-off-by: Ralf Baechle <[email protected]>
| -rw-r--r-- | arch/mips/cavium-octeon/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/cavium-octeon/setup.c b/arch/mips/cavium-octeon/setup.c index cb16fcc5f8f0..15c923dcb98e 100644 --- a/arch/mips/cavium-octeon/setup.c +++ b/arch/mips/cavium-octeon/setup.c @@ -65,7 +65,7 @@ EXPORT_SYMBOL(octeon_should_swizzle_table); extern void pci_console_init(const char *arg); #endif -static unsigned long long MAX_MEMORY = 512ull << 20; +static unsigned long long MAX_MEMORY = ULLONG_MAX; DEFINE_SEMAPHORE(octeon_bootbus_sem); EXPORT_SYMBOL(octeon_bootbus_sem); |