Move source tree closer to the 2.6.32.17 mainline
/drivers/hwmon/sht15.c
blob:fbc997ee67d973283c37181cd38dc499159639b0 -> blob:864a371f6eb98443f0565b1d1263cb66a370e152
--- drivers/hwmon/sht15.c
+++ drivers/hwmon/sht15.c
@@ -302,13 +302,13 @@ error_ret:
**/
static inline int sht15_calc_temp(struct sht15_data *data)
{
- int d1 = temppoints[0].d1;
+ int d1 = 0;
int i;
- for (i = ARRAY_SIZE(temppoints) - 1; i > 0; i--)
+ for (i = 1; i < ARRAY_SIZE(temppoints); i++)
/* Find pointer to interpolate */
if (data->supply_uV > temppoints[i - 1].vdd) {
- d1 = (data->supply_uV - temppoints[i - 1].vdd)
+ d1 = (data->supply_uV/1000 - temppoints[i - 1].vdd)
* (temppoints[i].d1 - temppoints[i - 1].d1)
/ (temppoints[i].vdd - temppoints[i - 1].vdd)
+ temppoints[i - 1].d1;
@@ -541,12 +541,7 @@ static int __devinit sht15_probe(struct
/* If a regulator is available, query what the supply voltage actually is!*/
data->reg = regulator_get(data->dev, "vcc");
if (!IS_ERR(data->reg)) {
- int voltage;
-
- voltage = regulator_get_voltage(data->reg);
- if (voltage)
- data->supply_uV = voltage;
-
+ data->supply_uV = regulator_get_voltage(data->reg);
regulator_enable(data->reg);
/* setup a notifier block to update this if another device
* causes the voltage to change */