Subversion Repositories Kolibri OS

Rev

Rev 6082 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6082 Rev 6102
Line 8... Line 8...
8
#include 
8
#include 
Line 9... Line 9...
9
 
9
 
10
#define FW_ACTION_NOHOTPLUG 0
10
#define FW_ACTION_NOHOTPLUG 0
Line 11... Line -...
11
#define FW_ACTION_HOTPLUG 1
-
 
12
 
-
 
13
struct device;
-
 
14
 
-
 
15
struct platform_device
-
 
16
{
-
 
17
	struct device dev;
-
 
18
};
11
#define FW_ACTION_HOTPLUG 1
19
 
12
 
20
struct firmware {
13
struct firmware {
21
	size_t size;
14
	size_t size;
Line -... Line 15...
-
 
15
	const u8 *data;
-
 
16
};
Line 22... Line 17...
22
	const u8 *data;
17
 
23
};
18
struct module;
24
 
19
struct device;
25
 
20