blob: e5d9204826c25d5a5ca54fda4f8022c4be0027c6 [file] [log] [blame]
Marcin Slusarza4cea272012-12-25 17:50:43 +01001#ifndef __NV10_FENCE_H_
2#define __NV10_FENCE_H_
3
4#include <core/os.h>
5#include "nouveau_fence.h"
6#include "nouveau_bo.h"
7
8struct nv10_fence_chan {
9 struct nouveau_fence_chan base;
10};
11
12struct 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