system.h

来自「Linux Kernel 2.6.9 for OMAP1710」· C头文件 代码 · 共 32 行

H
32
字号
/* * linux/include/asm-arm/arch-sa1100/system.h * * Copyright (c) 1999 Nicolas Pitre <nico@cam.org> */#include <linux/config.h>static inline void arch_idle(void){	cpu_do_idle();}#ifdef CONFIG_SA1100_VICTOR/* power off unconditionally */#define arch_reset(x) machine_power_off()#elsestatic inline void arch_reset(char mode){	if (mode == 's') {		/* Jump into ROM at address 0 */		cpu_reset(0);	} else {		/* Use on-chip reset capability */		RSRR = RSRR_SWR;	}}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?