]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[media] pulse8-cec: set correct Signal Free Time
authorHans Verkuil <hans.verkuil@cisco.com>
Fri, 12 Aug 2016 09:44:27 +0000 (06:44 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Mon, 22 Aug 2016 17:03:27 +0000 (14:03 -0300)
Don't hardcode the signal free time to 3 bit periods, instead use
the value for the signal free time as passed in by the CEC framework.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/staging/media/pulse8-cec/pulse8-cec.c

index 94f8590492dcd1d8b771956d1720f4a7b1191a00..28f853c80b197d61ec80cb53a154b483e7efffa6 100644 (file)
@@ -388,7 +388,7 @@ static int pulse8_cec_adap_transmit(struct cec_adapter *adap, u8 attempts,
        int err;
 
        cmd[0] = MSGCODE_TRANSMIT_IDLETIME;
-       cmd[1] = 3;
+       cmd[1] = signal_free_time;
        err = pulse8_send_and_wait(pulse8, cmd, 2,
                                   MSGCODE_COMMAND_ACCEPTED, 1);
        cmd[0] = MSGCODE_TRANSMIT_ACK_POLARITY;