summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/sync_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/sync_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/sync_gk20a.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/sync_gk20a.c b/drivers/gpu/nvgpu/gk20a/sync_gk20a.c
index b642981c..e7bacac8 100644
--- a/drivers/gpu/nvgpu/gk20a/sync_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/sync_gk20a.c
@@ -1,7 +1,7 @@
1/* 1/*
2 * GK20A Sync Framework Integration 2 * GK20A Sync Framework Integration
3 * 3 *
4 * Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved. 4 * Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify it 6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License, 7 * under the terms and conditions of the GNU General Public License,
@@ -13,8 +13,6 @@
13 * more details. 13 * more details.
14 */ 14 */
15 15
16#include "sync_gk20a.h"
17
18#include <linux/version.h> 16#include <linux/version.h>
19#include <linux/kernel.h> 17#include <linux/kernel.h>
20#include <linux/file.h> 18#include <linux/file.h>
@@ -23,9 +21,14 @@
23#include <linux/module.h> 21#include <linux/module.h>
24#include <linux/slab.h> 22#include <linux/slab.h>
25#include <linux/spinlock.h> 23#include <linux/spinlock.h>
24
26#include <uapi/linux/nvgpu.h> 25#include <uapi/linux/nvgpu.h>
26
27#include <nvgpu/semaphore.h>
28
27#include "../drivers/staging/android/sync.h" 29#include "../drivers/staging/android/sync.h"
28#include "semaphore_gk20a.h" 30
31#include "sync_gk20a.h"
29 32
30static const struct sync_timeline_ops gk20a_sync_timeline_ops; 33static const struct sync_timeline_ops gk20a_sync_timeline_ops;
31 34