]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
hwmon: (tmp102) Fix suspend and resume functions
authorJean Delvare <khali@linux-fr.org>
Thu, 27 May 2010 17:58:58 +0000 (19:58 +0200)
committerJean Delvare <khali@linux-fr.org>
Thu, 27 May 2010 17:58:58 +0000 (19:58 +0200)
Suspend and resume functions shouldn't overwrite the configuration
register. They should only alter the one bit they have to touch.

Also don't assume that register reads and writes always succeed.
Handle errors properly, shall they happen.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Steven King <sfking@fdwdc.com>
drivers/hwmon/tmp102.c

index e9de28df0e4dd54f7fdfd749a60e1030200e2896..0da695d800c5e8d0a81a3ecda07544f9abf35b74 100644 (file)
@@ -239,19 +239,27 @@ static int __devexit tmp102_remove(struct i2c_client *client)
 static int tmp102_suspend(struct device *dev)
 {
        struct i2c_client *client = to_i2c_client(dev);
+       int config;
 
-       tmp102_write_reg(client, TMP102_CONF_REG, TMP102_CONF_SD);
+       config = tmp102_read_reg(client, TMP102_CONF_REG);
+       if (config < 0)
+               return config;
 
-       return 0;
+       config |= TMP102_CONF_SD;
+       return tmp102_write_reg(client, TMP102_CONF_REG, config);
 }
 
 static int tmp102_resume(struct device *dev)
 {
        struct i2c_client *client = to_i2c_client(dev);
+       int config;
 
-       tmp102_write_reg(client, TMP102_CONF_REG, TMP102_CONFIG);
+       config = tmp102_read_reg(client, TMP102_CONF_REG);
+       if (config < 0)
+               return config;
 
-       return 0;
+       config &= ~TMP102_CONF_SD;
+       return tmp102_write_reg(client, TMP102_CONF_REG, config);
 }
 
 static const struct dev_pm_ops tmp102_dev_pm_ops = {