setup.c (642073c306e66daca108cb630d169129e50a6ba3) | setup.c (390a2086a4c6a325d9cc4e3e22b68b440a08cd9f) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Initial setup-routines for HP 9000 based hardware. 4 * 5 * Copyright (C) 1991, 1992, 1995 Linus Torvalds 6 * Modifications for PA-RISC (C) 1999 Helge Deller <deller@gmx.de> 7 * Modifications copyright 1999 SuSE GmbH (Philipp Rumpf) 8 * Modifications copyright 2000 Martin K. Petersen <mkp@mkp.net> --- 17 unchanged lines hidden (view full) --- 26#include <linux/sched/clock.h> 27#include <linux/start_kernel.h> 28 29#include <asm/cacheflush.h> 30#include <asm/processor.h> 31#include <asm/sections.h> 32#include <asm/pdc.h> 33#include <asm/led.h> | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Initial setup-routines for HP 9000 based hardware. 4 * 5 * Copyright (C) 1991, 1992, 1995 Linus Torvalds 6 * Modifications for PA-RISC (C) 1999 Helge Deller <deller@gmx.de> 7 * Modifications copyright 1999 SuSE GmbH (Philipp Rumpf) 8 * Modifications copyright 2000 Martin K. Petersen <mkp@mkp.net> --- 17 unchanged lines hidden (view full) --- 26#include <linux/sched/clock.h> 27#include <linux/start_kernel.h> 28 29#include <asm/cacheflush.h> 30#include <asm/processor.h> 31#include <asm/sections.h> 32#include <asm/pdc.h> 33#include <asm/led.h> |
34#include <asm/machdep.h> /* for pa7300lc_init() proto */ | |
35#include <asm/pdc_chassis.h> 36#include <asm/io.h> 37#include <asm/setup.h> 38#include <asm/unwind.h> 39#include <asm/smp.h> 40 41static char __initdata command_line[COMMAND_LINE_SIZE]; 42 --- 45 unchanged lines hidden (view full) --- 88 /* 89 * We've got way too many dependencies on 1.1 semantics 90 * to support 1.0 boxes at this point. 91 */ 92 panic( "PA-RISC Linux currently only supports machines that conform to\n" 93 "the PA-RISC 1.1 or 2.0 architecture specification.\n"); 94 95 case pcxl2: | 34#include <asm/pdc_chassis.h> 35#include <asm/io.h> 36#include <asm/setup.h> 37#include <asm/unwind.h> 38#include <asm/smp.h> 39 40static char __initdata command_line[COMMAND_LINE_SIZE]; 41 --- 45 unchanged lines hidden (view full) --- 87 /* 88 * We've got way too many dependencies on 1.1 semantics 89 * to support 1.0 boxes at this point. 90 */ 91 panic( "PA-RISC Linux currently only supports machines that conform to\n" 92 "the PA-RISC 1.1 or 2.0 architecture specification.\n"); 93 94 case pcxl2: |
96 pa7300lc_init(); 97 break; | |
98 default: 99 break; 100 } 101} 102#endif 103 104void __init setup_arch(char **cmdline_p) 105{ --- 254 unchanged lines hidden --- | 95 default: 96 break; 97 } 98} 99#endif 100 101void __init setup_arch(char **cmdline_p) 102{ --- 254 unchanged lines hidden --- |