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>
|
2013-02-13 09:23:54 +01:00
|
|
|
#include <linux/export.h>
|
2013-03-19 07:14:59 +01:00
|
|
|
#include <linux/moduleparam.h>
|
2009-12-14 19:34:32 +01:00
|
|
|
|
2009-09-26 16:08:05 +02:00
|
|
|
|
2009-10-21 11:33:33 +02:00
|
|
|
#define MODULE_FIRMWARE(x)
|
2012-11-12 22:22:52 +01:00
|
|
|
#define MODULE_AUTHOR(x);
|
|
|
|
#define MODULE_DESCRIPTION(x);
|
|
|
|
#define MODULE_LICENSE(x);
|
2009-12-14 19:34:32 +01:00
|
|
|
|
2012-11-12 22:22:52 +01:00
|
|
|
#define MODULE_PARM_DESC(_parm, desc)
|
2010-03-10 11:23:24 +01:00
|
|
|
|
2010-02-13 22:28:53 +01:00
|
|
|
struct module {};
|
2009-12-14 19:34:32 +01:00
|
|
|
|
|
|
|
#endif /* _LINUX_MODULE_H */
|