]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - 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
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
3545b425
BS
2#ifndef __NVKM_NVDEC_H__
3#define __NVKM_NVDEC_H__
16307b5d 4#define nvkm_nvdec(p) container_of((p), struct nvkm_nvdec, engine)
3545b425 5#include <core/engine.h>
16307b5d
AC
6
7struct nvkm_nvdec {
8 struct nvkm_engine engine;
9 struct nvkm_falcon *falcon;
10};
11
12int gp102_nvdec_new(struct nvkm_device *, int, struct nvkm_nvdec **);
3545b425 13#endif