diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-31 23:40:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-31 23:40:50 -0400 |
commit | dd9cd6d4351076c78bb8c0f9146d1904b481fdbb (patch) | |
tree | d633c460e2232def1a59b0e6f6c00711d835d911 /drivers/hwmon/abituguru3.c | |
parent | 128a2bcf9dddeb8e79a4ba55bf191533f70f39ce (diff) | |
parent | 5cccf4a1a258ea5bff20e8440deb3dfcf032b04a (diff) |
Merge branch 'release' of git://lm-sensors.org/kernel/mhoffman/hwmon-2.6
* 'release' of git://lm-sensors.org/kernel/mhoffman/hwmon-2.6:
hwmon: fscher read control bugfix
hwmon: (adm1031) Fix broken links in documentation
hwmon: make abituguru3_read_increment_offset() static
hwmon: Fix regression caused by typo in lm90.c
hwmon: (applesmc) add temperature sensors set for Macbook
hwmon: fscher control update bugfix
hwmon: fix dme1737 temp fault attribute
hwmon: Add missing __devexit tags in various drivers
hwmon: clean up duplicate includes
hwmon: fix lm78 detection regression
hwmon: fix array overruns in lm93.c
hwmon: add support for THMC50 and ADM1022
Diffstat (limited to 'drivers/hwmon/abituguru3.c')
-rw-r--r-- | drivers/hwmon/abituguru3.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/hwmon/abituguru3.c b/drivers/hwmon/abituguru3.c index a003d104ca45..cdd8b6dea16d 100644 --- a/drivers/hwmon/abituguru3.c +++ b/drivers/hwmon/abituguru3.c | |||
@@ -691,8 +691,9 @@ static int abituguru3_read(struct abituguru3_data *data, u8 bank, u8 offset, | |||
691 | 691 | ||
692 | /* Sensor settings are stored 1 byte per offset with the bytes | 692 | /* Sensor settings are stored 1 byte per offset with the bytes |
693 | placed add consecutive offsets. */ | 693 | placed add consecutive offsets. */ |
694 | int abituguru3_read_increment_offset(struct abituguru3_data *data, u8 bank, | 694 | static int abituguru3_read_increment_offset(struct abituguru3_data *data, |
695 | u8 offset, u8 count, u8 *buf, int offset_count) | 695 | u8 bank, u8 offset, u8 count, |
696 | u8 *buf, int offset_count) | ||
696 | { | 697 | { |
697 | int i, x; | 698 | int i, x; |
698 | 699 | ||