aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/radio
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2006-08-08 08:10:06 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-09-26 10:53:19 -0400
commit1ddf5bc5472f4a45b00bee33fc8c96d4616f8561 (patch)
treec5606107caff43dec6f1e8178ac62be71a874af5 /drivers/media/radio
parent3ca57169ce979be1919b013230940bb5c7b3ba5d (diff)
V4L/DVB (4371): Included missing linux/version.h
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/radio')
-rw-r--r--drivers/media/radio/radio-sf16fmr2.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/radio/radio-sf16fmr2.c b/drivers/media/radio/radio-sf16fmr2.c
index 0c7b51420573..4444dce864a9 100644
--- a/drivers/media/radio/radio-sf16fmr2.c
+++ b/drivers/media/radio/radio-sf16fmr2.c
@@ -24,6 +24,9 @@
24#include <media/v4l2-common.h> 24#include <media/v4l2-common.h>
25#include <linux/mutex.h> 25#include <linux/mutex.h>
26 26
27static struct mutex lock;
28
29#include <linux/version.h> /* for KERNEL_VERSION MACRO */
27#define RADIO_VERSION KERNEL_VERSION(0,0,2) 30#define RADIO_VERSION KERNEL_VERSION(0,0,2)
28 31
29static struct v4l2_queryctrl radio_qctrl[] = { 32static struct v4l2_queryctrl radio_qctrl[] = {
@@ -45,8 +48,6 @@ static struct v4l2_queryctrl radio_qctrl[] = {
45 } 48 }
46}; 49};
47 50
48static struct mutex lock;
49
50#undef DEBUG 51#undef DEBUG
51//#define DEBUG 1 52//#define DEBUG 1
52 53