Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 138140
b: refs/heads/master
c: 569b7ec
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent d9537d4 commit 2b80932
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fb6991d417a9f06978119ea597dc5955b3eb784d
refs/heads/master: 569b7ec73abf576f9a9e4070d213aadf2cce73cb
25 changes: 7 additions & 18 deletions trunk/drivers/media/video/cx88/cx88-input.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ struct cx88_IR {

/* poll external decoder */
int polling;
struct work_struct work;
struct timer_list timer;
struct delayed_work work;
u32 gpio_addr;
u32 last_gpio;
u32 mask_keycode;
Expand Down Expand Up @@ -143,27 +142,19 @@ static void cx88_ir_handle_key(struct cx88_IR *ir)
}
}

static void ir_timer(unsigned long data)
{
struct cx88_IR *ir = (struct cx88_IR *)data;

schedule_work(&ir->work);
}

static void cx88_ir_work(struct work_struct *work)
{
struct cx88_IR *ir = container_of(work, struct cx88_IR, work);
struct cx88_IR *ir = container_of(work, struct cx88_IR, work.work);

cx88_ir_handle_key(ir);
mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling));
schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
}

void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir)
{
if (ir->polling) {
setup_timer(&ir->timer, ir_timer, (unsigned long)ir);
INIT_WORK(&ir->work, cx88_ir_work);
schedule_work(&ir->work);
INIT_DELAYED_WORK(&ir->work, cx88_ir_work);
schedule_delayed_work(&ir->work, 0);
}
if (ir->sampling) {
core->pci_irqmask |= PCI_INT_IR_SMPINT;
Expand All @@ -179,10 +170,8 @@ void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir)
core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
}

if (ir->polling) {
del_timer_sync(&ir->timer);
flush_scheduled_work();
}
if (ir->polling)
cancel_delayed_work_sync(&ir->work);
}

/* ---------------------------------------------------------------------- */
Expand Down

0 comments on commit 2b80932

Please sign in to comment.