1/* SPDX-License-Identifier: MIT */
2#ifndef __NVIF_IF000E_H__
3#define __NVIF_IF000E_H__
4
5union nvif_event_args {
6	struct nvif_event_v0 {
7		__u8 version;
8		__u8 wait;
9		__u8 pad02[6];
10		__u8 data[];
11	} v0;
12};
13
14#define NVIF_EVENT_V0_ALLOW 0x00
15#define NVIF_EVENT_V0_BLOCK 0x01
16
17union nvif_event_allow_args {
18	struct nvif_event_allow_vn {
19	} vn;
20};
21
22union nvif_event_block_args {
23	struct nvif_event_block_vn {
24	} vn;
25};
26#endif
27