From: Stephen M. Cameron Date: Thu, 4 Feb 2010 14:42:04 +0000 (-0600) Subject: [SCSI] hpsa: use sizeof() not an inline constant in memset. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e89c0ae7babc3e702a9da128b3ac1eb04ed73c2c;p=mv-sheeva.git [SCSI] hpsa: use sizeof() not an inline constant in memset. Signed-off-by: Stephen M. Cameron Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index 8389ccefd10..add2ed57846 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c @@ -1363,9 +1363,8 @@ static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical, dev_err(&h->pdev->dev, "cmd_special_alloc returned NULL!\n"); return -1; } - - memset(&scsi3addr[0], 0, 8); /* address the controller */ - + /* address the controller */ + memset(scsi3addr, 0, sizeof(scsi3addr)); fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h, buf, bufsize, 0, scsi3addr, TYPE_CMD); if (extended_response)