diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-09-30 03:34:06 +0900 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-03 17:59:18 +0100 |
commit | b58e5d050ff60335b106a895a87a59a8f5475db4 (patch) | |
tree | 4a317401a14c97fb4838ca4302dca03342145200 /arch/mips/mm | |
parent | 34c2dd01fd10268fb8f362c8275f75517770e286 (diff) | |
download | op-kernel-dev-b58e5d050ff60335b106a895a87a59a8f5475db4.zip op-kernel-dev-b58e5d050ff60335b106a895a87a59a8f5475db4.tar.gz |
[MIPS] Fix size of zones_size and zholes_size array
Commit f06a96844a577c43249fce25809a4fae07407f46 broke MIPS.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm')
-rw-r--r-- | arch/mips/mm/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index 5b06349..88b72c9 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c @@ -163,10 +163,10 @@ static int __init page_is_ram(unsigned long pagenr) void __init paging_init(void) { - unsigned long zones_size[] = { 0, }; + unsigned long zones_size[MAX_NR_ZONES] = { 0, }; unsigned long max_dma, high, low; #ifndef CONFIG_FLATMEM - unsigned long zholes_size[] = { 0, }; + unsigned long zholes_size[MAX_NR_ZONES] = { 0, }; unsigned long i, j, pfn; #endif |