Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5632FC678D5 for ; Fri, 24 Feb 2023 06:06:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229661AbjBXGGI (ORCPT ); Fri, 24 Feb 2023 01:06:08 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45474 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229379AbjBXGGG (ORCPT ); Fri, 24 Feb 2023 01:06:06 -0500 Received: from mail.pr-group.ru (mail.pr-group.ru [178.18.215.3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9B7835EEC5; Thu, 23 Feb 2023 22:06:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=metrotek.ru; s=mail; h=from:subject:date:message-id:to:cc:mime-version:content-type:in-reply-to: references; bh=DwB4bZQaxHRrB6/01TuUbnnpQzCfQyELJ/MBwWdHYLk=; b=OtePABwO+4nnCdtiXEGiENgYvGISGzt9y4BaJucmwlKca70ucVk4Cbs0XF+FYmFQHvQR4uwTJKNAn ZvOTeKPaaU7kPAD+nfBJDTb48UGMZ+GtyNVXQ0ZdusZZHuqRhsxF1z5Sx57h7HxJnwFh4QfGbpsIZ+ DHlUaQooI30rpoQ9YGVm2cb9+IuwCwMTpFaXiMAfX/6j+P71/LWpecmzL8PGHQwxLTQaZzSdHbv7X3 ejHJk7urcF9DYcAz85DPblCantYbRRhc9VT/hoJwCLWgzjgNrbBOlqr7bMHKyYt+5eT5y5cVCyuHEB rvGgU0ikPTI1oS+Uqvd6taFfcfoXV1Q== X-Kerio-Anti-Spam: Build: [Engines: 2.17.1.1470, Stamp: 3], Multi: [Enabled, t: (0.000009,0.007284)], BW: [Enabled, t: (0.000020,0.000001)], RTDA: [Enabled, t: (0.081105), Hit: No, Details: v2.48.0; Id: 15.rwhmc.1gq10e01v.2ep; mclb], total: 0(700) X-Footer: bWV0cm90ZWsucnU= Received: from x260 ([78.37.166.219]) (authenticated user i.bornyakov@metrotek.ru) by mail.pr-group.ru with ESMTPSA (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256 bits)); Fri, 24 Feb 2023 09:05:40 +0300 Date: Fri, 24 Feb 2023 09:05:36 +0300 From: Ivan Bornyakov To: linux-imx@nxp.com Cc: shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, festevam@gmail.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, stable@vger.kernel.org, i.bornyakov@metrotek.ru Subject: Re: [PATCH] bus: imx-weim: fix branch condition evaluates to a garbage value Message-ID: <20230224060536.e5v5ltxkfqava2ia@x260> References: <20230217135950.19469-1-i.bornyakov@metrotek.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230217135950.19469-1-i.bornyakov@metrotek.ru> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 17, 2023 at 04:59:50PM +0300, Ivan Bornyakov wrote: > If bus type is other than imx50_weim_devtype and have no child devices, > variable 'ret' in function weim_parse_dt() will not be initialized, but > will be used as branch condition and return value. Fix this by > initializing 'ret' with 0. > > This was discovered with help of clang-analyzer, but the situation is > quite possible in real life. > > Signed-off-by: Ivan Bornyakov > Cc: stable@vger.kernel.org > --- > drivers/bus/imx-weim.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/bus/imx-weim.c b/drivers/bus/imx-weim.c > index 828c66bbaa67..55d917bd1f3f 100644 > --- a/drivers/bus/imx-weim.c > +++ b/drivers/bus/imx-weim.c > @@ -204,8 +204,8 @@ static int weim_parse_dt(struct platform_device *pdev) > const struct of_device_id *of_id = of_match_device(weim_id_table, > &pdev->dev); > const struct imx_weim_devtype *devtype = of_id->data; > + int ret = 0, have_child = 0; > struct device_node *child; > - int ret, have_child = 0; > struct weim_priv *priv; > void __iomem *base; > u32 reg; > -- > 2.39.2 > Friendly ping.