mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
a4cea27b69
We already rely on them having the same fields and layout. Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
20 lines
310 B
C
20 lines
310 B
C
#ifndef __NV10_FENCE_H_
|
|
#define __NV10_FENCE_H_
|
|
|
|
#include <core/os.h>
|
|
#include "nouveau_fence.h"
|
|
#include "nouveau_bo.h"
|
|
|
|
struct nv10_fence_chan {
|
|
struct nouveau_fence_chan base;
|
|
};
|
|
|
|
struct nv10_fence_priv {
|
|
struct nouveau_fence_priv base;
|
|
struct nouveau_bo *bo;
|
|
spinlock_t lock;
|
|
u32 sequence;
|
|
};
|
|
|
|
#endif
|