setup.c (6548698f929814375fa5d62ae1db96959b0418c1) setup.c (7580c9c3938f45b0d889728d5533cb46b0322a85)
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) 1995 Linus Torvalds
7 * Copyright (C) 1995 Waldorf Electronics
8 * Copyright (C) 1994, 95, 96, 97, 98, 99, 2000, 01, 02, 03 Ralf Baechle

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

53 * These are initialized so they are in the .data section
54 */
55unsigned long mips_machtype __read_mostly = MACH_UNKNOWN;
56
57EXPORT_SYMBOL(mips_machtype);
58
59struct boot_mem_map boot_mem_map;
60
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) 1995 Linus Torvalds
7 * Copyright (C) 1995 Waldorf Electronics
8 * Copyright (C) 1994, 95, 96, 97, 98, 99, 2000, 01, 02, 03 Ralf Baechle

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

53 * These are initialized so they are in the .data section
54 */
55unsigned long mips_machtype __read_mostly = MACH_UNKNOWN;
56
57EXPORT_SYMBOL(mips_machtype);
58
59struct boot_mem_map boot_mem_map;
60
61static char command_line[CL_SIZE];
62 char arcs_cmdline[CL_SIZE]=CONFIG_CMDLINE;
61static char command_line[COMMAND_LINE_SIZE];
62 char arcs_cmdline[COMMAND_LINE_SIZE] = CONFIG_CMDLINE;
63
64/*
65 * mips_io_port_base is the begin of the address space to which x86 style
66 * I/O ports are mapped.
67 */
68const unsigned long mips_io_port_base __read_mostly = -1;
69EXPORT_SYMBOL(mips_io_port_base);
70

--- 541 unchanged lines hidden ---
63
64/*
65 * mips_io_port_base is the begin of the address space to which x86 style
66 * I/O ports are mapped.
67 */
68const unsigned long mips_io_port_base __read_mostly = -1;
69EXPORT_SYMBOL(mips_io_port_base);
70

--- 541 unchanged lines hidden ---