init.c (0612ec48762bf8712db1925b2e67246d2237ebab) init.c (f06a96844a577c43249fce25809a4fae07407f46)
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1994 - 2000 Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com

--- 149 unchanged lines hidden (view full) ---

158 return 1;
159 }
160
161 return 0;
162}
163
164void __init paging_init(void)
165{
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1994 - 2000 Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com

--- 149 unchanged lines hidden (view full) ---

158 return 1;
159 }
160
161 return 0;
162}
163
164void __init paging_init(void)
165{
166 unsigned long zones_size[] = { [0 ... MAX_NR_ZONES - 1] = 0 };
166 unsigned long zones_size[] = { 0, };
167 unsigned long max_dma, high, low;
168#ifndef CONFIG_FLATMEM
167 unsigned long max_dma, high, low;
168#ifndef CONFIG_FLATMEM
169 unsigned long zholes_size[] = { [0 ... MAX_NR_ZONES - 1] = 0 };
169 unsigned long zholes_size[] = { 0, };
170 unsigned long i, j, pfn;
171#endif
172
173 pagetable_init();
174
175#ifdef CONFIG_HIGHMEM
176 kmap_init();
177#endif

--- 159 unchanged lines hidden ---
170 unsigned long i, j, pfn;
171#endif
172
173 pagetable_init();
174
175#ifdef CONFIG_HIGHMEM
176 kmap_init();
177#endif

--- 159 unchanged lines hidden ---