media: st_rc: Don't stay on an IRQ handler forever
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Thu, 12 Apr 2018 10:32:18 +0000 (06:32 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 17 Apr 2018 09:50:05 +0000 (05:50 -0400)
commitee2d243d6beea21e79631fa3442e92ad0fa11a6a
tree1fb02a176ae653ffccd798831558174a44336d90
parentca33f8f61a6e4376cc006b713a353e7200e66f59
media: st_rc: Don't stay on an IRQ handler forever

As warned by smatch:
drivers/media/rc/st_rc.c:110 st_rc_rx_interrupt() warn: this loop depends on readl() succeeding

If something goes wrong at readl(), the logic will stay there
inside an IRQ code forever. This is not the nicest thing to
do :-)

So, add a timeout there, preventing staying inside the IRQ
for more than 10ms.

Acked-by: Patrice Chotard <patrice.chotard@st.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/rc/st_rc.c