]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/commitdiff
[media] tm6000: Enable fast USB quirk on Cinergy Hybrid
authorThierry Reding <thierry.reding@avionic-design.de>
Thu, 1 Sep 2011 05:43:04 +0000 (02:43 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Wed, 21 Sep 2011 18:59:30 +0000 (15:59 -0300)
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>
drivers/staging/tm6000/tm6000-cards.c

index 8483c562556e07a526ed718c32b0e37f3cfa2c0e..ec2578a0fdf7378858ab1995c4c06ad85fa9b188 100644 (file)
@@ -999,6 +999,16 @@ static int fill_board_specific_data(struct tm6000_core *dev)
        dev->vinput[2] = tm6000_boards[dev->model].vinput[2];
        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 */
        rc = tm6000_init(dev);
        if (rc < 0)