repo.or.cz
/
davej-history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Import 2.3.25pre1
[davej-history.git]
/
include
/
linux
/
kmod.h
blob
7392910d39fe72f6e8a9bdc47a7f85c3a9a90dfb
1
/*
2
kmod header
3
*/
4
5
#include <linux/config.h>
6
7
#ifdef CONFIG_KMOD
8
extern
int
request_module
(
const char
*
name
);
9
#else
10
#define request_module(x) do {} while(0)
11
#endif
12