diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2006-06-28 11:14:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-28 18:54:27 -0400 |
commit | b44597906e03d5e2b467c17a3b73585596c0d7be (patch) | |
tree | 6628a60c3e168b871880d6fd30b5e283f09f4a3f /include/linux/plist.h | |
parent | 980a01c9bfb090cb8a991e39e56ac379c30c61b8 (diff) |
[PATCH] Fix plist include dependency
plist.h uses container_of, which is defined in kernel.h.
Include kernel.h in plist.h as the kernel.h include does not longer
happen automatically on all architectures.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/plist.h')
-rw-r--r-- | include/linux/plist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/plist.h b/include/linux/plist.h index 3404faef542c..b95818a037ad 100644 --- a/include/linux/plist.h +++ b/include/linux/plist.h | |||
@@ -73,6 +73,7 @@ | |||
73 | #ifndef _LINUX_PLIST_H_ | 73 | #ifndef _LINUX_PLIST_H_ |
74 | #define _LINUX_PLIST_H_ | 74 | #define _LINUX_PLIST_H_ |
75 | 75 | ||
76 | #include <linux/kernel.h> | ||
76 | #include <linux/list.h> | 77 | #include <linux/list.h> |
77 | #include <linux/spinlock_types.h> | 78 | #include <linux/spinlock_types.h> |
78 | 79 | ||