nv10_fence.h 310 B

12345678910111213141516171819
  1. #ifndef __NV10_FENCE_H_
  2. #define __NV10_FENCE_H_
  3. #include <core/os.h>
  4. #include "nouveau_fence.h"
  5. #include "nouveau_bo.h"
  6. struct nv10_fence_chan {
  7. struct nouveau_fence_chan base;
  8. };
  9. struct nv10_fence_priv {
  10. struct nouveau_fence_priv base;
  11. struct nouveau_bo *bo;
  12. spinlock_t lock;
  13. u32 sequence;
  14. };
  15. #endif