source:
GPL/trunk/include/linux/dmi.h
Last change on this file was 598, checked in by , 8 years ago | |
---|---|
File size: 326 bytes |
Line | |
---|---|
1 | #ifndef _LINUX_DMI_H |
2 | #define _LINUX_DMI_H |
3 | /* dmi wrappers */ |
4 | #define dmi_find_device(a, b, c) NULL |
5 | #define DMI_DEV_TYPE_OEM_STRING -2 |
6 | |
7 | struct dmi_device { |
8 | struct list_head list; |
9 | int type; |
10 | const char *name; |
11 | void *device_data; /* Type specific data */ |
12 | }; |
13 | |
14 | #endif /* _LINUX_DMI_H */ |
15 |
Note:
See TracBrowser
for help on using the repository browser.