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

📄 misc.c

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 C
字号:
/* $Id: misc.c,v 1.1 1998/10/18 13:32:09 tsbogend Exp $ * * misc.c: Miscellaneous ARCS PROM routines. * * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) */#include <linux/config.h>#include <linux/init.h>#include <linux/kernel.h>#include <asm/bcache.h>#include <asm/sgialib.h>#include <asm/bootinfo.h>#include <asm/system.h>extern unsigned long mips_cputype;extern void *sgiwd93_host;extern void reset_wd33c93(void *instance);void prom_halt(void){	bcops->bc_disable();	cli();#if CONFIG_SCSI_SGIWD93	reset_wd33c93(sgiwd93_host);#endif	romvec->halt();}void prom_powerdown(void){	bcops->bc_disable();	cli();#if CONFIG_SCSI_SGIWD93	reset_wd33c93(sgiwd93_host);#endif	romvec->pdown();}/* XXX is this a soft reset basically? XXX */void prom_restart(void){	bcops->bc_disable();	cli();#if CONFIG_SCSI_SGIWD93	reset_wd33c93(sgiwd93_host);#endif	romvec->restart();}void prom_reboot(void){	bcops->bc_disable();	cli();#if CONFIG_SCSI_SGIWD93	reset_wd33c93(sgiwd93_host);#endif	romvec->reboot();}void prom_imode(void){	bcops->bc_disable();	cli();#if CONFIG_SCSI_SGIWD93	reset_wd33c93(sgiwd93_host);#endif	romvec->imode();}long prom_cfgsave(void){	return romvec->cfg_save();}struct linux_sysid *prom_getsysid(void){	return romvec->get_sysid();}void __init prom_cacheflush(void){	romvec->cache_flush();}

⌨️ 快捷键说明

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