Skip to content

Commit

Permalink
ata: ahci_xgene: free structure returned by acpi_get_object_info()
Browse files Browse the repository at this point in the history
acpi_get_object_info() allocates the returned structure, which the
caller has to free when the call succeeds.  Free it when appropriate.

Fixes: c9802a4 ("ata: ahci_xgene: Add AHCI Support for 2nd HW version of APM X-Gene SoC AHCI SATA Host controller.")
Signed-off-by: Michał Kępień <kernel@kempniu.pl>
Signed-off-by: Tejun Heo <tj@kernel.org>
  • Loading branch information
Michał Kępień authored and Tejun Heo committed Jan 6, 2017
1 parent 2874d5e commit de25182
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/ata/ahci_xgene.c
Original file line number Diff line number Diff line change
Expand Up @@ -821,8 +821,10 @@ static int xgene_ahci_probe(struct platform_device *pdev)
dev_warn(&pdev->dev, "%s: Error reading device info. Assume version1\n",
__func__);
version = XGENE_AHCI_V1;
} else if (info->valid & ACPI_VALID_CID) {
version = XGENE_AHCI_V2;
} else {
if (info->valid & ACPI_VALID_CID)
version = XGENE_AHCI_V2;
kfree(info);
}
}
}
Expand Down

0 comments on commit de25182

Please sign in to comment.