Commit ef7562b7f2 ("dpt_i2o: Fix up
copy*user") had a silly typo: EINVAL should be -EINVAL.

Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Cc: stable@kernel.org
Cc: Alan Cox <alan@linux.intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
OGAWA Hirofumi 2009-10-30 17:02:31 +09:00 коммит произвёл Linus Torvalds
Родитель 89a8640279
Коммит aefba418bf
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1919,7 +1919,7 @@ static int adpt_i2o_passthru(adpt_hba* pHba, u32 __user *arg)
size = size>>16;
size *= 4;
if (size > MAX_MESSAGE_SIZE) {
rcode = EINVAL;
rcode = -EINVAL;
goto cleanup;
}
/* Copy in the user's I2O command */