Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 77b2555b52a894a2e39a42e43d993df875c46a6a 29 lines 735 B view raw
1/* Exported symbols for NuBus services 2 3 (c) 1999 David Huggins-Daines <dhd@debian.org> */ 4 5#include <linux/config.h> 6#include <linux/module.h> 7#include <linux/types.h> 8#include <linux/nubus.h> 9 10#ifdef CONFIG_PROC_FS 11EXPORT_SYMBOL(nubus_proc_attach_device); 12EXPORT_SYMBOL(nubus_proc_detach_device); 13#endif 14 15MODULE_LICENSE("GPL"); 16 17EXPORT_SYMBOL(nubus_find_device); 18EXPORT_SYMBOL(nubus_find_type); 19EXPORT_SYMBOL(nubus_find_slot); 20EXPORT_SYMBOL(nubus_get_root_dir); 21EXPORT_SYMBOL(nubus_get_board_dir); 22EXPORT_SYMBOL(nubus_get_func_dir); 23EXPORT_SYMBOL(nubus_readdir); 24EXPORT_SYMBOL(nubus_find_rsrc); 25EXPORT_SYMBOL(nubus_rewinddir); 26EXPORT_SYMBOL(nubus_get_subdir); 27EXPORT_SYMBOL(nubus_get_rsrc_mem); 28EXPORT_SYMBOL(nubus_get_rsrc_str); 29