Home | History | Annotate | Line # | Download | only in fifo
      1 /*	$NetBSD: cgrp.h,v 1.2 2021/12/18 23:45:35 riastradh Exp $	*/
      2 
      3 #ifndef __NVKM_FIFO_CGRP_H__
      4 #define __NVKM_FIFO_CGRP_H__
      5 #include "priv.h"
      6 
      7 struct nvkm_fifo_cgrp {
      8 	int id;
      9 	struct list_head head;
     10 	struct list_head chan;
     11 	int chan_nr;
     12 };
     13 #endif
     14