[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20220330110229.xczp74pd6o4xvfws@h-e2.ddg>
Date: Wed, 30 Mar 2022 14:02:29 +0300
From: Ivan Bornyakov <i.bornyakov@...rotek.ru>
To: Haowen Bai <baihaowen@...zu.com>
Cc: Shawn Guo <shawnguo@...nel.org>,
Sascha Hauer <s.hauer@...gutronix.de>,
Pengutronix Kernel Team <kernel@...gutronix.de>,
Fabio Estevam <festevam@...il.com>,
NXP Linux Team <linux-imx@....com>,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] bus: imx-weim: fix pdev is NULL but dereferenced
Hi!
On Wed, Mar 30, 2022 at 06:18:20PM +0800, Haowen Bai wrote:
> pdev is NULL,so we can't dereference it dev_err(&pdev->dev
>
> Fixes: e6cb540 ("bus: imx-weim: add DT overlay support for WEIM bus")
>
> Signed-off-by: Haowen Bai <baihaowen@...zu.com>
> ---
> drivers/bus/imx-weim.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/bus/imx-weim.c b/drivers/bus/imx-weim.c
> index 60fbd42..31a2213 100644
> --- a/drivers/bus/imx-weim.c
> +++ b/drivers/bus/imx-weim.c
> @@ -352,9 +352,8 @@ static int of_weim_notify(struct notifier_block *nb, unsigned long action,
>
> pdev = of_find_device_by_node(rd->dn);
> if (!pdev) {
> - dev_err(&pdev->dev,
> - "Could not find platform device for '%pOF'\n",
> - rd->dn);
> + pr_err("%s: Could not find platform device for '%pOF'\n",
> + __func__, rd->dn);
>
> ret = notifier_from_errno(-EINVAL);
> } else {
> --
> 2.7.4
>
This is a solid bug, but there is a fix already.
https://lore.kernel.org/all/20220223035146.412499-1-wanjiabing@vivo.com/
For some reason it was not applied yet.
Powered by blists - more mailing lists