27 lines · c
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 0x0015#define NVIF_EVENT_V0_BLOCK 0x0116 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#endif27