]> git.hungrycats.org Git - linux/commit
hwmon: (ntc_thermistor) Avoid math overflow
authorDoug Anderson <dianders@chromium.org>
Thu, 13 Feb 2014 22:39:34 +0000 (14:39 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 22 Feb 2014 21:34:46 +0000 (13:34 -0800)
commita15a0f76bce10ff511f4617a2fb531600fb2b169
tree6077c3a84de126c7b0fa31a354496c3a1ec094a1
parent4b0e4c45b480bce736d4a5f161b2042caea89194
hwmon: (ntc_thermistor) Avoid math overflow

commit d3d89c468ceebbcf9423d1a3d66c5bf91f569570 upstream.

The ntc thermistor code was doing math whose temporary result might
have overflowed 32-bits.  We need some casts in there to make it safe.

In one example I found:
- pullup_uV: 1800000
- result of iio_read_channel_raw: 3226
1800000 * 3226 => 0x15a1cbc80

Signed-off-by: Doug Anderson <dianders@chromium.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/hwmon/ntc_thermistor.c