diff options
author | Jean Delvare <khali@linux-fr.org> | 2011-11-04 07:00:47 -0400 |
---|---|---|
committer | Jean Delvare <khali@endymion.delvare> | 2011-11-04 07:00:47 -0400 |
commit | 90f4102ce59226954edbe960b2434d8b3da5f086 (patch) | |
tree | 93fd275039932253b16ea125c1ba5eea2995b719 /drivers/hwmon/gl520sm.c | |
parent | 371f2e083b9b081adf68d04fba4978a27dc4e618 (diff) |
hwmon: Use i2c_smbus_{read,write}_word_swapped
Make use of the new i2c_smbus_{read,write}_word_swapped functions.
This makes the driver code more compact and readable. It also ensures
proper error handling.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Acked-by: Jonathan Cameron <jic23@cam.ac.uk>
Acked-by: Guenter Roeck <guenter.roeck@ericsson.com>
Cc: Dirk Eibach <eibach@gdsys.de>
Cc: "Mark M. Hoffman" <mhoffman@lightlink.com>
Cc: Guillaume Ligneul <guillaume.ligneul@gmail.com>
Diffstat (limited to 'drivers/hwmon/gl520sm.c')
-rw-r--r-- | drivers/hwmon/gl520sm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/gl520sm.c b/drivers/hwmon/gl520sm.c index 131ea8625f08..cd6085bbfba7 100644 --- a/drivers/hwmon/gl520sm.c +++ b/drivers/hwmon/gl520sm.c | |||
@@ -821,7 +821,7 @@ static int gl520_remove(struct i2c_client *client) | |||
821 | static int gl520_read_value(struct i2c_client *client, u8 reg) | 821 | static int gl520_read_value(struct i2c_client *client, u8 reg) |
822 | { | 822 | { |
823 | if ((reg >= 0x07) && (reg <= 0x0c)) | 823 | if ((reg >= 0x07) && (reg <= 0x0c)) |
824 | return swab16(i2c_smbus_read_word_data(client, reg)); | 824 | return i2c_smbus_read_word_swapped(client, reg); |
825 | else | 825 | else |
826 | return i2c_smbus_read_byte_data(client, reg); | 826 | return i2c_smbus_read_byte_data(client, reg); |
827 | } | 827 | } |
@@ -829,7 +829,7 @@ static int gl520_read_value(struct i2c_client *client, u8 reg) | |||
829 | static int gl520_write_value(struct i2c_client *client, u8 reg, u16 value) | 829 | static int gl520_write_value(struct i2c_client *client, u8 reg, u16 value) |
830 | { | 830 | { |
831 | if ((reg >= 0x07) && (reg <= 0x0c)) | 831 | if ((reg >= 0x07) && (reg <= 0x0c)) |
832 | return i2c_smbus_write_word_data(client, reg, swab16(value)); | 832 | return i2c_smbus_write_word_swapped(client, reg, value); |
833 | else | 833 | else |
834 | return i2c_smbus_write_byte_data(client, reg, value); | 834 | return i2c_smbus_write_byte_data(client, reg, value); |
835 | } | 835 | } |