2009-12-14 19:34:32 +01:00
|
|
|
#ifndef _LINUX_MODULE_H
|
|
|
|
#define _LINUX_MODULE_H
|
2011-06-24 17:16:16 +02:00
|
|
|
/*
|
|
|
|
* Dynamic loading of modules into the kernel.
|
|
|
|
*
|
|
|
|
* Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996
|
|
|
|
* Rewritten again by Rusty Russell, 2002
|
|
|
|
*/
|
2009-12-14 19:34:32 +01:00
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/compiler.h>
|
2010-03-10 11:23:24 +01:00
|
|
|
#include <linux/kernel.h>
|
2009-12-14 19:34:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
#define EXPORT_SYMBOL(x)
|
2009-09-26 16:08:05 +02:00
|
|
|
|
2009-10-21 11:33:33 +02:00
|
|
|
#define MODULE_FIRMWARE(x)
|
2009-12-14 19:34:32 +01:00
|
|
|
|
2010-03-10 11:23:24 +01:00
|
|
|
|
|
|
|
#define MODULE_AUTHOR(x)
|
|
|
|
#define MODULE_DESCRIPTION(x)
|
|
|
|
#define MODULE_LICENSE(x)
|
|
|
|
|
2010-02-13 22:28:53 +01:00
|
|
|
struct module {};
|
2009-12-14 19:34:32 +01:00
|
|
|
|
|
|
|
#endif /* _LINUX_MODULE_H */
|