[SCSI] advansys: Fix bug in AdvLoadMicrocode
authorMatthew Wilcox <matthew@wil.cx>
Fri, 5 Oct 2007 19:57:06 +0000 (15:57 -0400)
committerJames Bottomley <James.Bottomley@HansenPartnership.com>
Fri, 7 Mar 2008 16:05:43 +0000 (10:05 -0600)
commit951b62c11e86acf8c55d9828aa8c921575023c29
treef9caeba567b96d05d22af36a4076bcf81133c897
parentce4796d1e16cf3761dc2a02b8d588667d05b3078
[SCSI] advansys: Fix bug in AdvLoadMicrocode

buf[i] can be up to 0xfd, so doubling it and assigning the result to an
unsigned char truncates the value.  Just use an unsigned int instead;
it's only a temporary.

Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Cc: Stable Tree <stable@kernel.org>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
drivers/scsi/advansys.c