forked from Minki/linux
mfd: qcom_rpm: Fix a possible NULL dereference
of_match_device could return NULL, and so cause a NULL pointer dereference later. Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
bdd5dcf513
commit
cf1199f792
@ -495,6 +495,8 @@ static int qcom_rpm_probe(struct platform_device *pdev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
match = of_match_device(qcom_rpm_of_match, &pdev->dev);
|
match = of_match_device(qcom_rpm_of_match, &pdev->dev);
|
||||||
|
if (!match)
|
||||||
|
return -ENODEV;
|
||||||
rpm->data = match->data;
|
rpm->data = match->data;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user