Subversion Repositories Kolibri OS

Rev

Rev 1970 | Rev 3243 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1970 Rev 3031
1
#ifndef _LINUX_MODULE_H
1
#ifndef _LINUX_MODULE_H
2
#define _LINUX_MODULE_H
2
#define _LINUX_MODULE_H
3
/*
3
/*
4
 * Dynamic loading of modules into the kernel.
4
 * Dynamic loading of modules into the kernel.
5
 *
5
 *
6
 * Rewritten by Richard Henderson  Dec 1996
6
 * Rewritten by Richard Henderson  Dec 1996
7
 * Rewritten again by Rusty Russell, 2002
7
 * Rewritten again by Rusty Russell, 2002
8
 */
8
 */
9
#include 
9
#include 
10
#include 
10
#include 
11
#include 
11
#include 
12
 
12
 
13
 
-
 
14
#define EXPORT_SYMBOL(x)
13
 
-
 
14
 
-
 
15
#define MODULE_FIRMWARE(x)
-
 
16
#define MODULE_AUTHOR(x);
15
 
-
 
16
#define MODULE_FIRMWARE(x)
-
 
17
 
17
#define MODULE_DESCRIPTION(x);
18
 
-
 
19
#define MODULE_AUTHOR(x)
18
#define MODULE_LICENSE(x);
20
#define MODULE_DESCRIPTION(x)
19
 
21
#define MODULE_LICENSE(x)
20
#define MODULE_PARM_DESC(_parm, desc)
22
 
21
 
23
struct module {};
22
struct module {};
24
 
23
 
25
#endif /* _LINUX_MODULE_H */
24
#endif /* _LINUX_MODULE_H */