root/drivers/gpu/drm/nouveau/include/nvkm/engine/nvdec.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: MIT */
   2 #ifndef __NVKM_NVDEC_H__
   3 #define __NVKM_NVDEC_H__
   4 #define nvkm_nvdec(p) container_of((p), struct nvkm_nvdec, engine)
   5 #include <core/engine.h>
   6 
   7 struct nvkm_nvdec {
   8         struct nvkm_engine engine;
   9         u32 addr;
  10 
  11         struct nvkm_falcon *falcon;
  12 };
  13 
  14 int gp102_nvdec_new(struct nvkm_device *, int, struct nvkm_nvdec **);
  15 #endif

/* [<][>][^][v][top][bottom][index][help] */