diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-12-09 21:14:21 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-12-10 06:22:53 -0500 |
commit | 67952e8cb111c5b2f9e675dba1bbde4876f9fcf3 (patch) | |
tree | 48a2b6e63971466266600b19b738b961dd18d733 /drivers/media/video/cx88 | |
parent | f35db23c1b1c4da0642e932a7035b5c577377974 (diff) |
V4L/DVB (4949a): Fix INIT_WORK
INIT_WORK syntax changed on kernel 2.6.19. Fixing it on
usbvision and cx88-input.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx88')
-rw-r--r-- | drivers/media/video/cx88/cx88-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-input.c b/drivers/media/video/cx88/cx88-input.c index c6d412b1f218..8136673fe9e8 100644 --- a/drivers/media/video/cx88/cx88-input.c +++ b/drivers/media/video/cx88/cx88-input.c | |||
@@ -158,7 +158,7 @@ static void cx88_ir_work(struct work_struct *work) | |||
158 | static void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir) | 158 | static void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir) |
159 | { | 159 | { |
160 | if (ir->polling) { | 160 | if (ir->polling) { |
161 | INIT_WORK(&ir->work, cx88_ir_work, ir); | 161 | INIT_WORK(&ir->work, cx88_ir_work); |
162 | init_timer(&ir->timer); | 162 | init_timer(&ir->timer); |
163 | ir->timer.function = ir_timer; | 163 | ir->timer.function = ir_timer; |
164 | ir->timer.data = (unsigned long)ir; | 164 | ir->timer.data = (unsigned long)ir; |