⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ip32-reset.c

📁 一个2.4.21版本的嵌入式linux内核
💻 C
字号:
/* * This file is subject to the terms and conditions of the GNU General Public * License.  See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2001 Keith M Wesolowski * Copyright (C) 2001 Paul Mundt */#include <linux/init.h>#include <asm/reboot.h>#include <asm/sgialib.h>static void ip32_machine_restart(char *cmd){	ArcReboot();}static inline void ip32_machine_halt(void){	ArcEnterInteractiveMode();}static void ip32_machine_power_off(void){	ip32_machine_halt();}void __init ip32_reboot_setup(void){	_machine_restart = ip32_machine_restart;	_machine_halt = ip32_machine_halt;	_machine_power_off = ip32_machine_power_off;}

⌨️ 快捷键说明

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