source: GPL/trunk/include/linux/mod_devicetable.h

Last change on this file was 695, checked in by David Azarewicz, 4 years ago

Merge changes from next branch.

File size: 296 bytes
Line 
1#ifndef _LINUX_MOD_DEVICETABLE_H
2#define _LINUX_MOD_DEVICETABLE_H
3
4#include <linux/types.h>
5
6struct hda_device_id {
7 __u32 vendor_id;
8 __u32 rev_id;
9 __u8 api_version;
10 const char *name;
11 unsigned long driver_data;
12};
13
14#define ACPI_ID_LEN 9
15
16#endif /* _LINUX_MOD_DEVICETABLE_H */
Note: See TracBrowser for help on using the repository browser.