This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: ir_toy: assignment to be16 should be of correct type
Author:  Sean Young <[email protected]>
Date:    Wed Oct 13 09:14:10 2021 +0100

commit f0c15b360fb6 ("media: ir_toy: prevent device from hanging during
transmit") removed a cpu_to_be16() cast, which causes a sparse warning.

Fixes: f0c15b360fb6 ("media: ir_toy: prevent device from hanging during 
transmit")
Reported-by: Hans Verkuil <[email protected]>
Signed-off-by: Sean Young <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/rc/ir_toy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

---

diff --git a/drivers/media/rc/ir_toy.c b/drivers/media/rc/ir_toy.c
index 71aced52248f..7e98e7e3aace 100644
--- a/drivers/media/rc/ir_toy.c
+++ b/drivers/media/rc/ir_toy.c
@@ -318,7 +318,7 @@ static int irtoy_tx(struct rc_dev *rc, uint *txbuf, uint 
count)
                buf[i] = cpu_to_be16(v);
        }
 
-       buf[count] = 0xffff;
+       buf[count] = cpu_to_be16(0xffff);
 
        irtoy->tx_buf = buf;
        irtoy->tx_len = size;

_______________________________________________
linuxtv-commits mailing list
[email protected]
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to