Skip to content

Commit

Permalink
phy: qcom: qmp-usbc: fix NULL-deref on runtime suspend
Browse files Browse the repository at this point in the history
Commit 413db06 ("phy: qcom-qmp-usb: clean up probe initialisation")
removed most users of the platform device driver data from the
qcom-qmp-usb driver, but mistakenly also removed the initialisation
despite the data still being used in the runtime PM callbacks. This bug
was later reproduced when the driver was copied to create the qmp-usbc
driver.

Restore the driver data initialisation at probe to avoid a NULL-pointer
dereference on runtime suspend.

Apparently no one uses runtime PM, which currently needs to be enabled
manually through sysfs, with these drivers.

Fixes: 1928157 ("phy: qcom: qmp-usb: split USB-C PHY driver")
Cc: stable@vger.kernel.org	# 6.9
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Link: https://lore.kernel.org/r/20240911115253.10920-4-johan+linaro@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
  • Loading branch information
Johan Hovold authored and Vinod Koul committed Oct 17, 2024
1 parent 2924013 commit 34c21f9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/phy/qualcomm/phy-qcom-qmp-usbc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1050,6 +1050,7 @@ static int qmp_usbc_probe(struct platform_device *pdev)
return -ENOMEM;

qmp->dev = dev;
dev_set_drvdata(dev, qmp);

qmp->orientation = TYPEC_ORIENTATION_NORMAL;

Expand Down

0 comments on commit 34c21f9

Please sign in to comment.