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