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 E548BECAAA2 for ; Sun, 28 Aug 2022 03:48:04 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 0745683FF9; Sun, 28 Aug 2022 05:48:02 +0200 (CEST) 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="F1KraraY"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id DFE42840E4; Sun, 28 Aug 2022 05:48:00 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 8AA2F8036D for ; Sun, 28 Aug 2022 05:47:58 +0200 (CEST) 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: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 789B860D17; Sun, 28 Aug 2022 03:47:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DC981C433C1; Sun, 28 Aug 2022 03:47:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1661658475; bh=/h9Ija8eIW6h1BSOx9oJ+AqXmAWz3LlidDvhuc8y6N8=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=F1KraraYDzr4ZGUQoc1o+JnJ7u0tW/ACLDhrkj2f8SPuoLfEM9uoAsGq6BoXT6jSM tQmv3PzOn9LQB3ZKziLzO5dJjL/drXfjAbC9fjaoqQCV298o60o3dsKneHmPAq+/Us pWxGM8ceFzmHDdJaMz5sKJ+QkWdAAnZXx9sIDwZNzWdsfoTb+3I8xLX10LMVay/qaB FpySUnIZtRAebO+Zn0p/x/ji6GhYlhbMC2MUj33X6xhMDCeBVqwDRe0BwYZtD+0L1T /dDFTPmW3uDOOLTDCSQMcThojDgclpAbBxkG91ZIg7Z/7uYZqCmFKIS94SAVis5679 iyiYN+odKC/Lw== Date: Sun, 28 Aug 2022 05:47:51 +0200 From: Marek =?UTF-8?B?QmVow7pu?= To: Pali =?UTF-8?B?Um9ow6Fy?= Cc: Simon Glass , u-boot@lists.denx.de Subject: Re: [PATCH] board_f: Add support for CONFIG_OF_BOARD_FIXUP for XIP images Message-ID: <20220828054751.6944d62a@thinkpad> In-Reply-To: <20220827181220.471-1-pali@kernel.org> References: <20220827181220.471-1-pali@kernel.org> X-Mailer: Claws Mail 3.19.0 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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.6 at phobos.denx.de X-Virus-Status: Clean Can you rename the option to OF_FDT_READONLY_BEFORE_RELOC ? The INITIAL in the name may confuse people. The functions are called *_fdt (reloc_fdt, fix_fdt), so maybe put FDT instead of DTB in the config option name. Marek