forked from luck/tmp_suning_uos_patched
[media] tm6000: Enable fast USB quirk on Cinergy Hybrid
The Cinergy Hybrid cards are known not to need an artificial delay after USB accesses so the quirk can safely be enabled. Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
4284570836
commit
6e89648195
@ -999,6 +999,16 @@ static int fill_board_specific_data(struct tm6000_core *dev)
|
|||||||
dev->vinput[2] = tm6000_boards[dev->model].vinput[2];
|
dev->vinput[2] = tm6000_boards[dev->model].vinput[2];
|
||||||
dev->rinput = tm6000_boards[dev->model].rinput;
|
dev->rinput = tm6000_boards[dev->model].rinput;
|
||||||
|
|
||||||
|
/* setup per-model quirks */
|
||||||
|
switch (dev->model) {
|
||||||
|
case TM6010_BOARD_TERRATEC_CINERGY_HYBRID_XE:
|
||||||
|
dev->quirks |= TM6000_QUIRK_NO_USB_DELAY;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
/* initialize hardware */
|
/* initialize hardware */
|
||||||
rc = tm6000_init(dev);
|
rc = tm6000_init(dev);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user