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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 12741D4A609 for ; Fri, 16 Jan 2026 08:22:24 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 5FCA183015; Fri, 16 Jan 2026 09:22:23 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="IiVemqJ+"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 8C1CD8309A; Fri, 16 Jan 2026 09:22:22 +0100 (CET) Received: from tor.source.kernel.org (tor.source.kernel.org [172.105.4.254]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 9AEC280077 for ; Fri, 16 Jan 2026 09:22:20 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=mkorpershoek@kernel.org Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 8446C60160; Fri, 16 Jan 2026 08:22:19 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8C916C116C6; Fri, 16 Jan 2026 08:22:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768551739; bh=5A9w48F9hE5ljLurZu3/qRcL/MGVEEJI2gJveKD+q1Q=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=IiVemqJ+7+akXuw76g5zn2n6D36H2pY7PyF9woVsUUQsftcMnUy88i0Ovr1/3ExbD Y62F0BVKddFLouxoUpu0kfgCTe0zQ68F6SL7UuuiBgig7PLoLZXduKtRgtfQ32FUip YajxkF9adfa3GWY2hkmDSu/0gpg9pBxMNXc4KtDpMHPvQYyAFbcIqZfk6FN8qo6h7Y w2NbV7FnlUsyeRmDlo1OtIDZHfEZNsoIkox7KxdHUFx15XHMzIBgchhrak9H/bGtif WEHA+UxjaLBgYg1/Dx272weHFFK7eAwNiHBrS/tlH2NNDRFko0zEkzP0LTKNYvu8WB 1XK7X9mDWQXXg== From: Mattijs Korpershoek To: "Markus Schneider-Pargmann (TI.com)" , u-boot@lists.denx.de, Mattijs Korpershoek Cc: Simon Glass , Tom Rini , Marek Vasut , Andrew Goodbody , Kory Maincent , Svyatoslav Ryhel , Christian Marangi , Dinesh Maniyam , Heiko Schocher , "Markus Schneider-Pargmann (TI.com)" , Simon Glass Subject: Re: [PATCH v3 1/6] dm: core: lists_bind_fdt: Remove unused variable In-Reply-To: <20260114-topic-musb-probing-v2026-01-v3-1-ebb8d990b9df@baylibre.com> References: <20260114-topic-musb-probing-v2026-01-v3-0-ebb8d990b9df@baylibre.com> <20260114-topic-musb-probing-v2026-01-v3-1-ebb8d990b9df@baylibre.com> Date: Fri, 16 Jan 2026 09:22:16 +0100 Message-ID: <87qzrqdl1j.fsf@kernel.org> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean Hi Markus, Thank you for the patch. On Wed, Jan 14, 2026 at 09:33, "Markus Schneider-Pargmann (TI.com)" wrote: > 'result' is unused in this function, remove it. > > Reviewed-by: Simon Glass > Signed-off-by: Markus Schneider-Pargmann (TI.com) Reviewed-by: Mattijs Korpershoek > --- > drivers/core/lists.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) >