media: ts2020: avoid integer overflows on 32 bit machines
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Wed, 10 Jan 2018 12:20:39 +0000 (07:20 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 16 Feb 2018 19:23:05 +0000 (20:23 +0100)
commit7a401e25f0a5909abf3f3e4fc7518b173cc5328f
tree9e5a14f6d2a78dfdc3b70ef4319e962e2a0bc0d6
parentad91b2e392be4339e09eefd8479675b4232ddfa1
media: ts2020: avoid integer overflows on 32 bit machines

commit 81742be14b6a90c9fd0ff6eb4218bdf696ad8e46 upstream.

Before this patch, when compiled for arm32, the signal strength
were reported as:

Lock   (0x1f) Signal= 4294908.66dBm C/N= 12.79dB

Because of a 32 bit integer overflow. After it, it is properly
reported as:

Lock   (0x1f) Signal= -58.64dBm C/N= 12.79dB

Fixes: 0f91c9d6bab9 ("[media] TS2020: Calculate tuner gain correctly")
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/media/dvb-frontends/ts2020.c