diff options
author | Jonathan Hamilton | 2013-02-08 15:05:38 -0600 |
---|---|---|
committer | Arve Hjønnevåg | 2013-02-19 19:56:20 -0600 |
commit | b77f73a7fe67db8845e5d175414199a0fc4b2111 (patch) | |
tree | b8f7ec296bef1818ca32156a5a5417b1c6c4ba97 | |
parent | 579a0d25a3325bd97547ad170f2f65bb48d4e092 (diff) | |
download | kernel-common-b77f73a7fe67db8845e5d175414199a0fc4b2111.tar.gz kernel-common-b77f73a7fe67db8845e5d175414199a0fc4b2111.tar.xz kernel-common-b77f73a7fe67db8845e5d175414199a0fc4b2111.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.h | 1 |
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 | ||