summaryrefslogtreecommitdiff
path: root/include/linux/device-id/hda.h
blob: 42542580f955f642029d55f37d53e8c03baf8d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LINUX_DEVICE_ID_HDA_H
#define LINUX_DEVICE_ID_HDA_H

#ifdef __KERNEL__
#include <linux/types.h>
#endif

struct hda_device_id {
	__u32 vendor_id;
	__u32 rev_id;
	__u8 api_version;
	const char *name;
	unsigned long driver_data;
};

#endif /* ifndef LINUX_DEVICE_ID_HDA_H */