[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <2024081448-garden-module-40f7@gregkh>
Date: Wed, 14 Aug 2024 16:49:56 +0200
From: Greg KH <greg@...ah.com>
To: Ma Ke <make24@...as.ac.cn>
Cc: vkoul@...nel.org, kishon@...nel.org, ansuelsmth@...il.com,
agross@...eaurora.org, linux-arm-msm@...r.kernel.org,
linux-phy@...ts.infradead.org, linux-kernel@...r.kernel.org,
stable@...r.kernel.org
Subject: Re: [PATCH] phy: qualcomm: Check NULL ptr on data
On Wed, Aug 14, 2024 at 10:11:25PM +0800, Ma Ke wrote:
> Check NULL ptr on data, verify that data is not NULL before using it.
>
> Cc: stable@...r.kernel.org
> Fixes: ef19b117b834 ("phy: qualcomm: add qcom ipq806x dwc usb phy driver")
> Signed-off-by: Ma Ke <make24@...as.ac.cn>
> ---
> drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c b/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
> index 06392ed7c91b..9b9fd9c1b1f7 100644
> --- a/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
> +++ b/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
> @@ -492,6 +492,8 @@ static int qcom_ipq806x_usb_phy_probe(struct platform_device *pdev)
> return -ENOMEM;
>
> data = of_device_get_match_data(&pdev->dev);
> + if (!data)
> + return -ENODEV;
When will this ever fail?
Powered by blists - more mailing lists