1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NVIF_IF0011_H__
3 #define __NVIF_IF0011_H__
4 
5 union nvif_conn_args {
6 	struct nvif_conn_v0 {
7 		__u8 version;
8 		__u8 id;	/* DCB connector table index. */
9 		__u8 pad02[6];
10 	} v0;
11 };
12 
13 #define NVIF_CONN_V0_HPD_STATUS 0x00000000
14 
15 union nvif_conn_hpd_status_args {
16 	struct nvif_conn_hpd_status_v0 {
17 		__u8 version;
18 		__u8 support;
19 		__u8 present;
20 		__u8 pad03[5];
21 	} v0;
22 };
23 #endif
24