xref: /openbmc/linux/drivers/gpu/drm/nouveau/nvkm/engine/fifo/cgrp.h (revision 6de125383a5cce5f0d9235a6d3a9ae83dc5d299e)
1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NVKM_CGRP_H__
3 #define __NVKM_CGRP_H__
4 #include <core/os.h>
5 
6 struct nvkm_cgrp {
7 	const struct nvkm_cgrp_func {
8 	} *func;
9 	int id;
10 	struct list_head head;
11 	struct list_head chan;
12 	int chan_nr;
13 };
14 #endif
15