hwmon: applesmc: specified number of bytes to read should match actual

At one single place in the code, the specified number of bytes to read and
the actual number of bytes read differ by one.  This one-liner patch fixes
that inconsistency.

Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Cc: Nicolas Boichat <nicolas@boichat.ch>
Cc: Riki Oktarianto <rkoktarianto@gmail.com>
Cc: Mark M. Hoffman <mhoffman@lightlink.com>
Cc: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Henrik Rydberg 2008-10-18 20:27:35 -07:00 коммит произвёл Linus Torvalds
Родитель 865c295360
Коммит 05224091af
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -325,7 +325,7 @@ static int applesmc_get_key_type(char* key, char* type)
return -EIO; return -EIO;
} }
outb(5, APPLESMC_DATA_PORT); outb(6, APPLESMC_DATA_PORT);
for (i = 0; i < 6; i++) { for (i = 0; i < 6; i++) {
if (__wait_status(0x05)) if (__wait_status(0x05))