Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 202075
b: refs/heads/master
c: 89c3bc7
h: refs/heads/master
i:
  202073: 617f832
  202071: a18b69a
v: v3
  • Loading branch information
Jean Delvare authored and Mauro Carvalho Chehab committed Aug 2, 2010
1 parent 817722b commit 6ffa1eb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 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: 15ceb6b1c30ea40bdbe6a6246e2468d9bab375f5
refs/heads/master: 89c3bc78075042ae1f4452687f626acce06b3b21
10 changes: 8 additions & 2 deletions trunk/drivers/media/video/cx88/cx88-cards.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ static unsigned int latency = UNSET;
module_param(latency,int,0444);
MODULE_PARM_DESC(latency,"pci latency timer");

static int disable_ir;
module_param(disable_ir, int, 0444);
MODULE_PARM_DESC(latency, "Disable IR support");

#define info_printk(core, fmt, arg...) \
printk(KERN_INFO "%s: " fmt, core->name , ## arg)

Expand Down Expand Up @@ -3498,8 +3502,10 @@ struct cx88_core *cx88_core_create(struct pci_dev *pci, int nr)
}

cx88_card_setup(core);
cx88_i2c_init_ir(core);
cx88_ir_init(core, pci);
if (!disable_ir) {
cx88_i2c_init_ir(core);
cx88_ir_init(core, pci);
}

return core;
}

0 comments on commit 6ffa1eb

Please sign in to comment.