mirror of https://gitee.com/openkylin/linux.git
ata: ahci_xgene: dereferencing uninitialized pointer in probe
If the call to acpi_get_object_info() fails then "info" hasn't been
initialized. In that situation, we already know that "version" should
be XGENE_AHCI_V1 so we don't actually need to dereference "info".
Fixes: c9802a4be6
('ata: ahci_xgene: Add AHCI Support for 2nd HW version of APM X-Gene SoC AHCI SATA Host controller.')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
parent
8ba559fd09
commit
8134233e8d
|
@ -821,9 +821,9 @@ static int xgene_ahci_probe(struct platform_device *pdev)
|
||||||
dev_warn(&pdev->dev, "%s: Error reading device info. Assume version1\n",
|
dev_warn(&pdev->dev, "%s: Error reading device info. Assume version1\n",
|
||||||
__func__);
|
__func__);
|
||||||
version = XGENE_AHCI_V1;
|
version = XGENE_AHCI_V1;
|
||||||
}
|
} else if (info->valid & ACPI_VALID_CID) {
|
||||||
if (info->valid & ACPI_VALID_CID)
|
|
||||||
version = XGENE_AHCI_V2;
|
version = XGENE_AHCI_V2;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue