License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / drivers / gpu / drm / nouveau / nv10_fence.h
blob7616c66803f882c3bb9b1d20dca780ec50fec9d8
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NV10_FENCE_H_
3 #define __NV10_FENCE_H_
5 #include "nouveau_fence.h"
6 #include "nouveau_bo.h"
8 struct nv10_fence_chan {
9 struct nouveau_fence_chan base;
10 struct nvif_object sema;
13 struct nv10_fence_priv {
14 struct nouveau_fence_priv base;
15 struct nouveau_bo *bo;
16 spinlock_t lock;
17 u32 sequence;
20 #endif