From mboxrd@z Thu Jan 1 00:00:00 1970 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 BD464C61DA7 for ; Sat, 28 Jan 2023 08:12:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233641AbjA1IMq (ORCPT ); Sat, 28 Jan 2023 03:12:46 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51724 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229579AbjA1IMp (ORCPT ); Sat, 28 Jan 2023 03:12:45 -0500 Received: from mail.kapsi.fi (mail.kapsi.fi [IPv6:2001:67c:1be8::25]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 27BF6EB6C; Sat, 28 Jan 2023 00:12:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=kapsi.fi; s=20161220; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:From: References:Cc:To:Subject:MIME-Version:Date:Message-ID:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=vLpchkzEUKvtWSQnseIYZdMDBaGfP5kVaR4wnUmvEEQ=; b=GEjRytbk6BZNgR+TLSTvlLv739 F9gpXR7MS46BKc2ngfRylLO8Em1c7DDuEoGU0xKAoC2LOPF0qxvTMm1+xIJAie1A/u5FqW1xT91lc nWK2QP9aDTeixZfjYqGjDS2Weoa5ce6aWjw7DnC4z/Ci7loIAQDj4Q9dHaKONW7JnbsKqWzvKuLjM tU0kOxWSaMGr/EWJe4ivHHA96Lt/KF+mW5BViKA/4+zu9p0MIbSS/qao5tshY7uXdi8TzS2YIY451 ln6KYeD3NoxQd9gR+/BOIv3l+BvMPmpEYQDSfkrSdww1MLg+dwHm3jx36SuXnzBGDXhWoUqs+46fF o3zIo2oA==; Received: from 91-158-25-70.elisa-laajakaista.fi ([91.158.25.70] helo=[192.168.1.10]) by mail.kapsi.fi with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1pLgJs-009HDo-HM; Sat, 28 Jan 2023 10:12:16 +0200 Message-ID: <46a462ec-bc80-cbb7-4833-d9c430f4e9c3@kapsi.fi> Date: Sat, 28 Jan 2023 10:12:15 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.5.1 Subject: Re: [PATCH] gpu: host1x: fix uninitialized variable use Content-Language: en-US To: Nathan Chancellor , Arnd Bergmann Cc: Thierry Reding , David Airlie , Daniel Vetter , Arnd Bergmann , Nick Desaulniers , Tom Rix , Mikko Perttunen , Christophe JAILLET , Robin Murphy , dri-devel@lists.freedesktop.org, linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org, llvm@lists.linux.dev References: <20230127221418.2522612-1-arnd@kernel.org> From: Mikko Perttunen In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-SA-Exim-Connect-IP: 91.158.25.70 X-SA-Exim-Mail-From: cyndis@kapsi.fi X-SA-Exim-Scanned: No (on mail.kapsi.fi); SAEximRunCond expanded to false Precedence: bulk List-ID: X-Mailing-List: linux-tegra@vger.kernel.org On 1/28/23 01:18, Nathan Chancellor wrote: > On Fri, Jan 27, 2023 at 11:14:00PM +0100, Arnd Bergmann wrote: >> From: Arnd Bergmann >> >> The error handling for platform_get_irq() failing no longer >> works after a recent change, clang now points this out with >> a warning: >> >> drivers/gpu/host1x/dev.c:520:6: error: variable 'syncpt_irq' is uninitialized when used here [-Werror,-Wuninitialized] >> if (syncpt_irq < 0) >> ^~~~~~~~~~ >> >> Fix this by removing the variable and checking the correct >> error status. >> >> Fixes: 625d4ffb438c ("gpu: host1x: Rewrite syncpoint interrupt handling") >> Signed-off-by: Arnd Bergmann > > I had the same diff pending but civic duty called today :) > > Reviewed-by: Nathan Chancellor > >> --- >> drivers/gpu/host1x/dev.c | 5 ++--- >> 1 file changed, 2 insertions(+), 3 deletions(-) >> >> diff --git a/drivers/gpu/host1x/dev.c b/drivers/gpu/host1x/dev.c >> index 4872d183d860..aae2efeef503 100644 >> --- a/drivers/gpu/host1x/dev.c >> +++ b/drivers/gpu/host1x/dev.c >> @@ -487,7 +487,6 @@ static int host1x_get_resets(struct host1x *host) >> static int host1x_probe(struct platform_device *pdev) >> { >> struct host1x *host; >> - int syncpt_irq; >> int err; >> >> host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL); >> @@ -517,8 +516,8 @@ static int host1x_probe(struct platform_device *pdev) >> } >> >> host->syncpt_irq = platform_get_irq(pdev, 0); >> - if (syncpt_irq < 0) >> - return syncpt_irq; >> + if (host->syncpt_irq < 0) >> + return host->syncpt_irq; >> >> mutex_init(&host->devices_lock); >> INIT_LIST_HEAD(&host->devices); >> -- >> 2.39.0 >> Thanks both for the fix :) FWIW, Reviewed-by: Mikko Perttunen