https://github.com/torvalds/linux
Raw File
Tip revision: 60d4684068ff1eec78f55b5888d0bd2d4cca1520 authored by Linus Torvalds on 28 August 2006, 03:41:48 UTC
Linux v2.6.18-rc5
Tip revision: 60d4684
nubus_syms.c
/* Exported symbols for NuBus services

   (c) 1999 David Huggins-Daines <dhd@debian.org> */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/nubus.h>

#ifdef CONFIG_PROC_FS
EXPORT_SYMBOL(nubus_proc_attach_device);
EXPORT_SYMBOL(nubus_proc_detach_device);
#endif

MODULE_LICENSE("GPL");

EXPORT_SYMBOL(nubus_find_device);
EXPORT_SYMBOL(nubus_find_type);
EXPORT_SYMBOL(nubus_find_slot);
EXPORT_SYMBOL(nubus_get_root_dir);
EXPORT_SYMBOL(nubus_get_board_dir);
EXPORT_SYMBOL(nubus_get_func_dir);
EXPORT_SYMBOL(nubus_readdir);
EXPORT_SYMBOL(nubus_find_rsrc);
EXPORT_SYMBOL(nubus_rewinddir);
EXPORT_SYMBOL(nubus_get_subdir);
EXPORT_SYMBOL(nubus_get_rsrc_mem);
EXPORT_SYMBOL(nubus_get_rsrc_str);

back to top