[media] mceusb: give hardware time to reply to cmds
authorJarod Wilson <jarod@redhat.com>
Mon, 18 Jul 2011 19:54:22 +0000 (16:54 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 27 Aug 2011 11:49:30 +0000 (08:49 -0300)
Sometimes the init routine is blasting commands out to the hardware
faster than it can reply. Throw a brief delay in there to give the
hardware a chance to reply before we send the next command.

Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/rc/mceusb.c

index eee28a5..7af5738 100644 (file)
@@ -735,6 +735,7 @@ static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
 static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
 {
        mce_request_packet(ir, data, size, MCEUSB_TX);
+       msleep(10);
 }
 
 static void mce_flush_rx_buffer(struct mceusb_dev *ir, int size)