summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/saa6588.c
diff options
context:
space:
mode:
Diffstat (limited to 'linux/drivers/media/video/saa6588.c')
-rw-r--r--linux/drivers/media/video/saa6588.c25
1 files changed, 5 insertions, 20 deletions
diff --git a/linux/drivers/media/video/saa6588.c b/linux/drivers/media/video/saa6588.c
index 4b9b51e39..ae96de5fd 100644
--- a/linux/drivers/media/video/saa6588.c
+++ b/linux/drivers/media/video/saa6588.c
@@ -77,12 +77,8 @@ MODULE_LICENSE("GPL");
struct saa6588 {
struct v4l2_subdev sd;
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
struct work_struct work;
struct timer_list timer;
-#else
- struct delayed_work work;
-#endif
spinlock_t lock;
unsigned char *buffer;
unsigned int buf_size;
@@ -327,7 +323,6 @@ static void saa6588_i2c_poll(struct saa6588 *s)
wake_up_interruptible(&s->read_queue);
}
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
static void saa6588_timer(unsigned long data)
{
struct saa6588 *s = (struct saa6588 *)data;
@@ -335,6 +330,7 @@ static void saa6588_timer(unsigned long data)
schedule_work(&s->work);
}
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
static void saa6588_work(void *data)
#else
static void saa6588_work(struct work_struct *work)
@@ -343,17 +339,11 @@ static void saa6588_work(struct work_struct *work)
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
struct saa6588 *s = (struct saa6588 *)data;
#else
- struct delayed_work *dwork = container_of(work, struct delayed_work,
- work);
- struct saa6588 *s = container_of(dwork, struct saa6588, work);
+ struct saa6588 *s = container_of(work, struct saa6588, work);
#endif
saa6588_i2c_poll(s);
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
mod_timer(&s->timer, jiffies + msecs_to_jiffies(20));
-#else
- schedule_delayed_work(dwork, msecs_to_jiffies(20));
-#endif
}
static int saa6588_configure(struct saa6588 *s)
@@ -511,14 +501,13 @@ static int saa6588_probe(struct i2c_client *client,
/* start polling via eventd */
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
INIT_WORK(&s->work, saa6588_work, s);
+#else
+ INIT_WORK(&s->work, saa6588_work);
+#endif
init_timer(&s->timer);
s->timer.function = saa6588_timer;
s->timer.data = (unsigned long)s;
schedule_work(&s->work);
-#else
- INIT_DELAYED_WORK(&s->work, saa6588_work);
- schedule_delayed_work(&s->work, msecs_to_jiffies(20));
-#endif
return 0;
}
@@ -529,12 +518,8 @@ static int saa6588_remove(struct i2c_client *client)
v4l2_device_unregister_subdev(sd);
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
del_timer_sync(&s->timer);
flush_scheduled_work();
-#else
- cancel_delayed_work_sync(&s->work);
-#endif
kfree(s->buffer);
kfree(s);