From: Andrew Morton Shrinks text by 34 bytes on i386 - OK? Cc: Darrick J. Wong Cc: Jean Delvare Cc: Mark M. Hoffman Signed-off-by: Andrew Morton --- drivers/hwmon/adt7473.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/hwmon/adt7473.c~adt7473-new-driver-for-analog-devices-adt7473-sensor-chip-fix drivers/hwmon/adt7473.c --- a/drivers/hwmon/adt7473.c~adt7473-new-driver-for-analog-devices-adt7473-sensor-chip-fix +++ a/drivers/hwmon/adt7473.c @@ -194,7 +194,7 @@ static struct i2c_driver adt7473_driver * 16-bit registers on the ADT7473 are low-byte first. The data sheet says * that the low byte must be read before the high byte. */ -static inline int adt7473_read_word_data(struct i2c_client *client, u8 reg) +static int adt7473_read_word_data(struct i2c_client *client, u8 reg) { u16 foo; foo = i2c_smbus_read_byte_data(client, reg); @@ -202,7 +202,7 @@ static inline int adt7473_read_word_data return foo; } -static inline int adt7473_write_word_data(struct i2c_client *client, u8 reg, +static int adt7473_write_word_data(struct i2c_client *client, u8 reg, u16 value) { return i2c_smbus_write_byte_data(client, reg, value & 0xFF) _