summaryrefslogtreecommitdiff
path: root/pfinet/linux-src/include/linux/kmod.h
blob: 7392910d39fe72f6e8a9bdc47a7f85c3a9a90dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
	kmod header
*/

#include <linux/config.h>

#ifdef CONFIG_KMOD
extern int request_module(const char * name);
#else
#define request_module(x) do {} while(0)
#endif