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:32:26 +0000 (13:32 -0800)
commit8c2d483428e53ce4a532f340471e25e79c0ec1f5
tree0c13149237494f555cb84258c84b908f501e9e95
parentb8b06e137054f0c3b9ab556dd646885d6f07609f
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