|
@@ -6087,7 +6087,7 @@ struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
|
|
|
return NULL;
|
|
|
|
|
|
if (!devres_open_group(dev, NULL, GFP_KERNEL))
|
|
|
- return NULL;
|
|
|
+ goto err_free;
|
|
|
|
|
|
dr = devres_alloc(ata_devres_release, 0, GFP_KERNEL);
|
|
|
if (!dr)
|
|
@@ -6119,6 +6119,8 @@ struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
|
|
|
|
|
|
err_out:
|
|
|
devres_release_group(dev, NULL);
|
|
|
+ err_free:
|
|
|
+ kfree(host);
|
|
|
return NULL;
|
|
|
}
|
|
|
|