]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/nv10_fence.h
Merge airlied/drm-next into drm-misc-next
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / nv10_fence.h
1 #ifndef __NV10_FENCE_H_
2 #define __NV10_FENCE_H_
3
4 #include "nouveau_fence.h"
5 #include "nouveau_bo.h"
6
7 struct nv10_fence_chan {
8         struct nouveau_fence_chan base;
9         struct nvif_object sema;
10 };
11
12 struct nv10_fence_priv {
13         struct nouveau_fence_priv base;
14         struct nouveau_bo *bo;
15         spinlock_t lock;
16         u32 sequence;
17 };
18
19 #endif