3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-01 07:42:18 +00:00
Brooklyn/drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h

14 lines
311 B
C
Raw Normal View History

2021-05-26 19:09:36 +00:00
#ifndef __NVKM_GSP_H__
#define __NVKM_GSP_H__
#define nvkm_gsp(p) container_of((p), struct nvkm_gsp, subdev)
#include <core/subdev.h>
#include <core/falcon.h>
struct nvkm_gsp {
struct nvkm_subdev subdev;
struct nvkm_falcon falcon;
};
2021-09-23 16:59:15 +00:00
int gv100_gsp_new(struct nvkm_device *, int, struct nvkm_gsp **);
2021-05-26 19:09:36 +00:00
#endif