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

📄 pci-sh.c

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 C
字号:
#include <linux/types.h>#include <linux/kernel.h>#include <linux/pci.h>#include <linux/init.h>#include <linux/ioport.h>#include <linux/errno.h>#include <asm/machvec.h>void __init pcibios_init(void){	if (sh_mv.mv_init_pci != NULL) {		sh_mv.mv_init_pci();	}}/* Haven't done anything here as yet */char * __init pcibios_setup(char *str){	return str;}/* We don't have anything here to fixup */struct pci_fixup pcibios_fixups[] = {	{0, 0, 0, NULL}};

⌨️ 快捷键说明

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