diff options
author | Mariusz Kozlowski <m.kozlowski@tuxland.pl> | 2007-08-11 04:13:24 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-10-12 14:41:00 -0400 |
commit | bbfbbbc1182f8b44c8cc4c99f4a3f3a512149022 (patch) | |
tree | f7e3d50cda2e3d55bff88c2cc617d60df8ddb2cb /drivers/scsi/aic7xxx_old.c | |
parent | f36789e22ac32a6554b8e4d05ab6125fc1161745 (diff) |
[SCSI] kmalloc + memset conversion to kzalloc
In NCR_D700, a4000t, aic7xxx_old, bvme6000, dpt_i2o, gdth, lpfc,
megaraid, mvme16x osst, pluto, qla2xxx, zorro7xx
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/aic7xxx_old.c')
-rw-r--r-- | drivers/scsi/aic7xxx_old.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c index 4998bb850c49..1a71b0236c97 100644 --- a/drivers/scsi/aic7xxx_old.c +++ b/drivers/scsi/aic7xxx_old.c | |||
@@ -8416,10 +8416,9 @@ aic7xxx_alloc(struct scsi_host_template *sht, struct aic7xxx_host *temp) | |||
8416 | *p = *temp; | 8416 | *p = *temp; |
8417 | p->host = host; | 8417 | p->host = host; |
8418 | 8418 | ||
8419 | p->scb_data = kmalloc(sizeof(scb_data_type), GFP_ATOMIC); | 8419 | p->scb_data = kzalloc(sizeof(scb_data_type), GFP_ATOMIC); |
8420 | if (p->scb_data != NULL) | 8420 | if (!p->scb_data) |
8421 | { | 8421 | { |
8422 | memset(p->scb_data, 0, sizeof(scb_data_type)); | ||
8423 | scbq_init (&p->scb_data->free_scbs); | 8422 | scbq_init (&p->scb_data->free_scbs); |
8424 | } | 8423 | } |
8425 | else | 8424 | else |
@@ -9196,10 +9195,9 @@ aic7xxx_detect(struct scsi_host_template *template) | |||
9196 | printk(KERN_INFO " this driver, we are ignoring it.\n"); | 9195 | printk(KERN_INFO " this driver, we are ignoring it.\n"); |
9197 | } | 9196 | } |
9198 | } | 9197 | } |
9199 | else if ( (temp_p = kmalloc(sizeof(struct aic7xxx_host), | 9198 | else if ( (temp_p = kzalloc(sizeof(struct aic7xxx_host), |
9200 | GFP_ATOMIC)) != NULL ) | 9199 | GFP_ATOMIC)) != NULL ) |
9201 | { | 9200 | { |
9202 | memset(temp_p, 0, sizeof(struct aic7xxx_host)); | ||
9203 | temp_p->chip = aic_pdevs[i].chip | AHC_PCI; | 9201 | temp_p->chip = aic_pdevs[i].chip | AHC_PCI; |
9204 | temp_p->flags = aic_pdevs[i].flags; | 9202 | temp_p->flags = aic_pdevs[i].flags; |
9205 | temp_p->features = aic_pdevs[i].features; | 9203 | temp_p->features = aic_pdevs[i].features; |