]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/gpu/drm/nouveau/include/nvkm/engine/nvdec.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / include / nvkm / engine / nvdec.h
1 /* SPDX-License-Identifier: GPL-2.0 */
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 struct nvkm_falcon *falcon;
10 };
11
12 int gp102_nvdec_new(struct nvkm_device *, int, struct nvkm_nvdec **);
13 #endif