From: Jonathan Cameron Date: Sun, 8 Jan 2017 19:52:25 +0000 (+0000) Subject: iio:adc:qcom-spmi-vadc: use div64_s64 instead of direct 64 bit division. X-Git-Tag: v4.11-rc1~116^2~332^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e30eca0e69cb888125b081c96ca761e958fcb5b4;p=karo-tx-linux.git iio:adc:qcom-spmi-vadc: use div64_s64 instead of direct 64 bit division. Another one of these that we missed previously which prevents test builds of this driver on 32 bit platforms as it gives an undefined __divdi3 warning. Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/adc/qcom-spmi-vadc.c b/drivers/iio/adc/qcom-spmi-vadc.c index faaf711325b5..0a19761d656c 100644 --- a/drivers/iio/adc/qcom-spmi-vadc.c +++ b/drivers/iio/adc/qcom-spmi-vadc.c @@ -641,7 +641,7 @@ static int vadc_scale_therm(struct vadc_priv *vadc, vadc_scale_calib(vadc, adc_code, prop, &voltage); if (prop->calibration == VADC_CALIB_ABSOLUTE) - voltage /= 1000; + voltage = div64_s64(voltage, 1000); vadc_map_voltage_temp(adcmap_100k_104ef_104fb, ARRAY_SIZE(adcmap_100k_104ef_104fb),