forked from KolibriOS/kolibrios
4adaeb28fb
git-svn-id: svn://kolibrios.org@4103 a494cfbc-eb01-0410-851d-a64ba20cac60
26 lines
566 B
C
26 lines
566 B
C
#ifndef _LINUX_MODULE_H
|
|
#define _LINUX_MODULE_H
|
|
/*
|
|
* Dynamic loading of modules into the kernel.
|
|
*
|
|
* Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996
|
|
* Rewritten again by Rusty Russell, 2002
|
|
*/
|
|
#include <linux/list.h>
|
|
#include <linux/compiler.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/moduleparam.h>
|
|
#include <linux/export.h>
|
|
|
|
|
|
#define MODULE_FIRMWARE(x)
|
|
#define MODULE_AUTHOR(x);
|
|
#define MODULE_DESCRIPTION(x);
|
|
#define MODULE_LICENSE(x);
|
|
|
|
#define MODULE_PARM_DESC(_parm, desc)
|
|
|
|
struct module {};
|
|
|
|
#endif /* _LINUX_MODULE_H */
|