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

📄 syscalls.c

📁 话带数据中传真解调程序
💻 C
字号:
/* *	$Id: syscalls.c,v 1.1 1999/01/22 21:05:42 mj Exp $ * *	The PCI Library -- Configuration Access via Syscalls * *	Copyright (c) 1997--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz> * *	Can be freely distributed and used under the terms of the GNU GPL. */#include "internal.h"static intsysc_detect(struct pci_access *a){  return 0;}static voidsysc_init(struct pci_access *a){}static voidsysc_cleanup(struct pci_access *a){}static intsysc_read(struct pci_dev *d, int pos, byte *buf, int len){  return 0;}static intsysc_write(struct pci_dev *d, int pos, byte *buf, int len){  return 0;}struct pci_methods pm_syscalls = {  "syscalls",  NULL,					/* config */  sysc_detect,  sysc_init,  sysc_cleanup,  pci_generic_scan,  pci_generic_fill_info,  sysc_read,  sysc_write,  NULL,					/* init_dev */  NULL					/* cleanup_dev */};

⌨️ 快捷键说明

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