hc
2023-11-07 f45e756958099c35d6afb746df1d40a1c6302cfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __NVKM_UMMU_H__
#define __NVKM_UMMU_H__
#define nvkm_ummu(p) container_of((p), struct nvkm_ummu, object)
#include <core/object.h>
#include "priv.h"
 
struct nvkm_ummu {
   struct nvkm_object object;
   struct nvkm_mmu *mmu;
};
 
int nvkm_ummu_new(struct nvkm_device *, const struct nvkm_oclass *,
         void *argv, u32 argc, struct nvkm_object **);
#endif