The following commit has been merged in the linux branch: commit aefba418bfecd1985a08f50a95bd854a119f0153 Author: OGAWA Hirofumi hirofumi@mail.parknet.co.jp Date: Fri Oct 30 17:02:31 2009 +0900
dpt_i2o: Fix typo of EINVAL
Commit ef7562b7f28319e6dd1f85dc1af87df2a7a84832 ("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
diff --git a/drivers/scsi/dpt_i2o.c b/drivers/scsi/dpt_i2o.c index 7d1aac3..4967643 100644 --- a/drivers/scsi/dpt_i2o.c +++ b/drivers/scsi/dpt_i2o.c @@ -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 */