xref: /linux/include/linux/device-id/mips_cdmm.h (revision d2c9a99135da931377240942d44f3dea104cedb8)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef LINUX_DEVICE_ID_MIPS_CDMM_H
3 #define LINUX_DEVICE_ID_MIPS_CDMM_H
4 
5 #ifdef __KERNEL__
6 #include <linux/types.h>
7 #endif
8 
9 /**
10  * struct mips_cdmm_device_id - identifies devices in MIPS CDMM bus
11  * @type:	Device type identifier.
12  */
13 struct mips_cdmm_device_id {
14 	__u8	type;
15 };
16 
17 #endif /* ifndef LINUX_DEVICE_ID_MIPS_CDMM_H */
18