Skip to content

Commit

Permalink
[PATCH] DVB: Fixed DiSEqC timing for saa7146-based budget cards
Browse files Browse the repository at this point in the history
Fixed DiSEqC timing for saa7146-based budget cards (speed-up ioctls using
SAA7146_I2C_SHORT_DELAY)

Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Oliver Endriss authored and Linus Torvalds committed Dec 1, 2005
1 parent f95006f commit 69459f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions drivers/media/dvb/ttpci/budget-av.c
Original file line number Diff line number Diff line change
Expand Up @@ -1020,6 +1020,8 @@ MODULE_DEVICE_TABLE(pci, pci_tbl);

static struct saa7146_extension budget_extension = {
.name = "budget_av",
.flags = SAA7146_I2C_SHORT_DELAY,

.pci_tbl = pci_tbl,

.module = THIS_MODULE,
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/dvb/ttpci/budget-ci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,7 @@ MODULE_DEVICE_TABLE(pci, pci_tbl);

static struct saa7146_extension budget_extension = {
.name = "budget_ci dvb\0",
.flags = 0,
.flags = SAA7146_I2C_SHORT_DELAY,

.module = THIS_MODULE,
.pci_tbl = &pci_tbl[0],
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/dvb/ttpci/budget.c
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ MODULE_DEVICE_TABLE(pci, pci_tbl);

static struct saa7146_extension budget_extension = {
.name = "budget dvb\0",
.flags = 0,
.flags = SAA7146_I2C_SHORT_DELAY,

.module = THIS_MODULE,
.pci_tbl = pci_tbl,
Expand Down

0 comments on commit 69459f3

Please sign in to comment.