arch.c
来自「是关于linux2.5.1的完全源码」· C语言 代码 · 共 41 行
C
41 行
/* * linux/arch/arm/mach-arc/arch.c * * Copyright (C) 1998-2001 Russell King * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Architecture specific fixups. */#include <linux/config.h>#include <linux/tty.h>#include <linux/init.h>#include <asm/mach-types.h>#include <asm/hardware.h>#include <asm/page.h>#include <asm/setup.h>#include <asm/mach/map.h>#include <asm/mach/arch.h>extern void arc_init_irq(void);#ifdef CONFIG_ARCH_ARCMACHINE_START(ARCHIMEDES, "Acorn-Archimedes") MAINTAINER("Dave Gilbert") BOOT_PARAMS(0x0207c000) INITIRQ(arc_init_irq)MACHINE_END#endif#ifdef CONFIG_ARCH_A5KMACHINE_START(A5K, "Acorn-A5000") MAINTAINER("Russell King") BOOT_PARAMS(0x0207c000) INITIRQ(arc_init_irq)MACHINE_END#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?