drm/nouveau: port all engines to new engine module format
[deliverable/linux.git] / drivers / gpu / drm / nouveau / core / subdev / vm / nv04.h
1 #ifndef __NV04_VMMGR_PRIV__
2 #define __NV04_VMMGR_PRIV__
3
4 #include <subdev/vm.h>
5
6 struct nv04_vmmgr_priv {
7 struct nouveau_vmmgr base;
8 struct nouveau_vm *vm;
9 struct page *page;
10 dma_addr_t null;
11 };
12
13 static inline struct nv04_vmmgr_priv *
14 nv04_vmmgr(void *obj)
15 {
16 return (void *)nouveau_vmmgr(obj);
17 }
18
19 #endif
This page took 0.030587 seconds and 5 git commands to generate.