📄 sn1_ksyms.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) 2000 Silicon Graphics, Inc. * Copyright (C) 2000 Jesse Barnes (jbarnes@sgi.com) *//* * Architecture-specific kernel symbols */#include <linux/module.h>#include <asm/machvec.h>/* * I/O routines */EXPORT_SYMBOL(sn1_outb);EXPORT_SYMBOL(sn1_outl);EXPORT_SYMBOL(sn1_outw);EXPORT_SYMBOL(sn1_inw);EXPORT_SYMBOL(sn1_inb);EXPORT_SYMBOL(sn1_inl);/* * other stuff (more to be added later, cleanup then) */EXPORT_SYMBOL(sn1_pci_map_sg);EXPORT_SYMBOL(sn1_pci_unmap_sg);EXPORT_SYMBOL(sn1_pci_alloc_consistent);EXPORT_SYMBOL(sn1_pci_free_consistent);EXPORT_SYMBOL(sn1_dma_address);#include <linux/mm.h>EXPORT_SYMBOL(alloc_pages);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -