aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Hamilton2013-02-08 15:05:38 -0600
committerArve Hjønnevåg2013-04-29 16:43:21 -0500
commit62dbaa4069bc7460be5b40d3b7e87e4225fa6f6c (patch)
tree63909fbb5d0b901d55311996f935703ecc600225
parent5c06932b45022812760643e39b9dc6e34165bb74 (diff)
downloadkernel-common-62dbaa4069bc7460be5b40d3b7e87e4225fa6f6c.tar.gz
kernel-common-62dbaa4069bc7460be5b40d3b7e87e4225fa6f6c.tar.xz
kernel-common-62dbaa4069bc7460be5b40d3b7e87e4225fa6f6c.zip
base: sync: Include seq_file.h in sync.h
sync.h uses struct seq_file in some function table prototypes. This causes compile failures when including the header in files that do not otherwise include seq_file.h Signed-off-by: Jonathan Hamilton <jonathan.hamilton@imgtec.com>
-rw-r--r--include/linux/sync.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sync.h b/include/linux/sync.h
index 38ea986dc70..5f493638148 100644
--- a/include/linux/sync.h
+++ b/include/linux/sync.h
@@ -19,6 +19,7 @@
19#include <linux/kref.h> 19#include <linux/kref.h>
20#include <linux/ktime.h> 20#include <linux/ktime.h>
21#include <linux/list.h> 21#include <linux/list.h>
22#include <linux/seq_file.h>
22#include <linux/spinlock.h> 23#include <linux/spinlock.h>
23#include <linux/wait.h> 24#include <linux/wait.h>
24 25