aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sync_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/sync_file.h')
-rw-r--r--include/linux/sync_file.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/sync_file.h b/include/linux/sync_file.h
index 3e3ab84fc4cd..d37beefdfbd5 100644
--- a/include/linux/sync_file.h
+++ b/include/linux/sync_file.h
@@ -14,7 +14,6 @@
14#define _LINUX_SYNC_FILE_H 14#define _LINUX_SYNC_FILE_H
15 15
16#include <linux/types.h> 16#include <linux/types.h>
17#include <linux/kref.h>
18#include <linux/ktime.h> 17#include <linux/ktime.h>
19#include <linux/list.h> 18#include <linux/list.h>
20#include <linux/spinlock.h> 19#include <linux/spinlock.h>
@@ -24,7 +23,6 @@
24/** 23/**
25 * struct sync_file - sync file to export to the userspace 24 * struct sync_file - sync file to export to the userspace
26 * @file: file representing this fence 25 * @file: file representing this fence
27 * @kref: reference count on fence.
28 * @name: name of sync_file. Useful for debugging 26 * @name: name of sync_file. Useful for debugging
29 * @sync_file_list: membership in global file list 27 * @sync_file_list: membership in global file list
30 * @wq: wait queue for fence signaling 28 * @wq: wait queue for fence signaling
@@ -33,7 +31,6 @@
33 */ 31 */
34struct sync_file { 32struct sync_file {
35 struct file *file; 33 struct file *file;
36 struct kref kref;
37 char name[32]; 34 char name[32];
38#ifdef CONFIG_DEBUG_FS 35#ifdef CONFIG_DEBUG_FS
39 struct list_head sync_file_list; 36 struct list_head sync_file_list;