setup.c (5a84d159061d914c8dd4aa372ac6e9529c2be453) | setup.c (36a885306fdf7bb557c773309c993bfb2d0d693c) |
---|---|
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 --- 511 unchanged lines hidden (view full) --- 520 request_resource(res, &data_resource); 521 } 522} 523 524void __init setup_arch(char **cmdline_p) 525{ 526 cpu_probe(); 527 prom_init(); | 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 --- 511 unchanged lines hidden (view full) --- 520 request_resource(res, &data_resource); 521 } 522} 523 524void __init setup_arch(char **cmdline_p) 525{ 526 cpu_probe(); 527 prom_init(); |
528 529#ifdef CONFIG_EARLY_PRINTK 530 { 531 extern void setup_early_printk(void); 532 533 setup_early_printk(); 534 } 535#endif |
|
528 cpu_report(); 529 530#if defined(CONFIG_VT) 531#if defined(CONFIG_VGA_CONSOLE) 532 conswitchp = &vga_con; 533#elif defined(CONFIG_DUMMY_CONSOLE) 534 conswitchp = &dummy_con; 535#endif --- 33 unchanged lines hidden --- | 536 cpu_report(); 537 538#if defined(CONFIG_VT) 539#if defined(CONFIG_VGA_CONSOLE) 540 conswitchp = &vga_con; 541#elif defined(CONFIG_DUMMY_CONSOLE) 542 conswitchp = &dummy_con; 543#endif --- 33 unchanged lines hidden --- |