@@ -725,10 +725,8 @@ static int asd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
asd_dev = &asd_pcidev_data[asd_id];
asd_ha = kzalloc(sizeof(*asd_ha), GFP_KERNEL);
- if (!asd_ha) {
- asd_printk("out of memory\n");
+ if (!asd_ha)
goto Err_put;
- }
asd_ha->pcidev = dev;
asd_ha->sas_ha.dev = &asd_ha->pcidev->dev;
asd_ha->sas_ha.lldd_ha = asd_ha;
@@ -342,10 +342,8 @@ int asd_read_ocm(struct asd_ha_struct *asd_ha)
return -1;
dir = kmalloc(sizeof(*dir), GFP_KERNEL);
- if (!dir) {
- asd_printk("no memory for ocm dir\n");
+ if (!dir)
return -ENOMEM;
- }
err = asd_read_ocm_dir(asd_ha, dir, 0);
if (err)
Fixes scripts/checkpatch.pl warning: WARNING: Possible unnecessary 'out of memory' message Remove it can help us save a bit of memory. Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com> --- drivers/scsi/aic94xx/aic94xx_init.c | 4 +--- drivers/scsi/aic94xx/aic94xx_sds.c | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) -- 2.26.0.106.g9fadedd