]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
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:09:45 +0000 (20:09 +0100)
commit6b3bfe719b65a19349c65ef112ad61e64b7068c0
tree6ffcf784a8b5ea992457b056bd6166d87d732ac8
parentfebb867324cb97d82645a32f94d1ac11ce1a00f5
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