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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4C2E6C433EF for ; Fri, 12 Nov 2021 17:26:38 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 46C5F60FE3 for ; Fri, 12 Nov 2021 17:26:37 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 46C5F60FE3 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id ED90383017; Fri, 12 Nov 2021 18:26:34 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none 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="Kc1GeUGE"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 6604482F6A; Fri, 12 Nov 2021 18:26:33 +0100 (CET) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 983AB82F64 for ; Fri, 12 Nov 2021 18:26:29 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=kabel@kernel.org Received: by mail.kernel.org (Postfix) with ESMTPSA id 2467760FE7; Fri, 12 Nov 2021 17:26:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1636737988; bh=iGkj83KN2W6xoB20hgkp2K+Nfk6S4o754AyEWtzqoC4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=Kc1GeUGEw09j0Z61wwkbXz7fKgD9jD8E2x2sSo6m8UDndtZqFK6eSqhHiWExhhEvn FBtjog41SB2/v5C03QR5lvdA1tKquF8nzm9/E14N0d9mfj48NJI5RFQdtTheDEhaz8 +0t6A0UsFyexmUkWK4ZFO5AfmzCoq3aKN9A2WMqyGkLGHb/xeIgS8enaAWI1eAQRZ/ /i4XWXWPVH5iFMMh8YIJDtp2smtiI0rKmYWlOIRHPzTk22PkErxVzQbJk6gnDKQwJ7 DLC+xpvQsb60UkNeruv+T0oUdOzLXJz5wX61l/bKDI8XALJ9CTc0pAx7JUylFsJ25K DQzr+vJ30HsNg== Date: Fri, 12 Nov 2021 18:26:24 +0100 From: Marek =?UTF-8?B?QmVow7pu?= To: Stefan Roese Cc: u-boot@lists.denx.de, Pali =?UTF-8?B?Um9ow6Fy?= , Marek =?UTF-8?B?QmVow7pu?= Subject: Re: [PATCH u-boot-marvell 03/11] fdt_support: Remove fdt_alloc_phandle() in favor of fdt_generate_phandle() Message-ID: <20211112182624.2ee989a6@thinkpad> In-Reply-To: <5bc39306-fbe0-daa5-da42-e60e430f26ce@denx.de> References: <20211103020244.25428-1-kabel@kernel.org> <20211103020244.25428-4-kabel@kernel.org> <5bc39306-fbe0-daa5-da42-e60e430f26ce@denx.de> X-Mailer: Claws Mail 3.18.0 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.35 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.2 at phobos.denx.de X-Virus-Status: Clean On Fri, 12 Nov 2021 13:42:29 +0100 Stefan Roese wrote: > On 11/3/21 03:02, Marek Beh=C3=BAn wrote: > > From: Marek Beh=C3=BAn > >=20 > > Commit f0921f5098d ("fdt: Sync up to the latest libfdt") introduced > > fdt_generate_phandle() in libfdt, making fdt_alloc_phandle() obsolete in > > fdt_support. > >=20 > > Signed-off-by: Marek Beh=C3=BAn > > --- > > board/freescale/lx2160a/eth_lx2160aqds.c | 8 +++++-- > > board/freescale/lx2160a/eth_lx2162aqds.c | 8 +++++-- > > common/fdt_support.c | 28 +++++++----------------- > > include/fdt_support.h | 1 - > > 4 files changed, 20 insertions(+), 25 deletions(-) =20 >=20 > Could you please add the maintainers for the boards, if there are such > changes in the board specific code? Otherwise such changes just "slip" > by and might not be tested on these platforms. >=20 > Reviewed-by: Stefan Roese OK. Should I resend this series? Or just send them reply to this patch? Marek