aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJohannes Stezenbach <js@convergence.de>2004-08-09 02:46:38 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-09 02:46:38 -0700
commitdcff0e756ca34d301e760ae751eaf285c81a5a51 (patch)
tree7054055e5617738b18ff4eb9a3c3a0894546be91 /include
parent1a59b2793bbbb17f22c6f789efc2eda998bc2c31 (diff)
downloadhistory-dcff0e756ca34d301e760ae751eaf285c81a5a51.tar.gz
[PATCH] dvb: missing includes
Although the current DVB stuff compiles fine, for correctness the following patch adds the necessary include for __user annotations. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/dvb/osd.h2
-rw-r--r--include/linux/dvb/video.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/dvb/osd.h b/include/linux/dvb/osd.h
index 5ccf27457e1b31..cdaff25eccc3f0 100644
--- a/include/linux/dvb/osd.h
+++ b/include/linux/dvb/osd.h
@@ -24,6 +24,8 @@
#ifndef _DVBOSD_H_
#define _DVBOSD_H_
+#include <linux/compiler.h>
+
typedef enum {
// All functions return -2 on "not open"
OSD_Close=1, // ()
diff --git a/include/linux/dvb/video.h b/include/linux/dvb/video.h
index 8fb2eb33633610..2ed5d7bc4cbcfc 100644
--- a/include/linux/dvb/video.h
+++ b/include/linux/dvb/video.h
@@ -24,6 +24,8 @@
#ifndef _DVBVIDEO_H_
#define _DVBVIDEO_H_
+#include <linux/compiler.h>
+
#ifdef __KERNEL__
#include <linux/types.h>
#else