All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: U-Boot Mailing List <u-boot@lists.denx.de>
Cc: "Mark Kettenis" <mark.kettenis@xs4all.nl>,
	"Sean Anderson" <seanga2@gmail.com>,
	"Ilias Apalodimas" <ilias.apalodimas@linaro.org>,
	"Tom Rini" <trini@konsulko.com>,
	"François Ozog" <francois.ozog@linaro.org>,
	"Heinrich Schuchardt" <xypron.glpk@gmx.de>,
	"Simon Glass" <sjg@chromium.org>,
	"Jerry Van Baren" <vanbaren@cideas.com>
Subject: [PATCH v6 21/25] fdt: Drop #ifdef around board_fdt_blob_setup()
Date: Thu,  2 Dec 2021 08:59:15 -0700	[thread overview]
Message-ID: <20211202155919.2429190-22-sjg@chromium.org> (raw)
In-Reply-To: <20211202155919.2429190-1-sjg@chromium.org>

This serves no purpose. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v1)

 lib/fdtdec.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/fdtdec.c b/lib/fdtdec.c
index fbdc92c0813..299a2c3a32f 100644
--- a/lib/fdtdec.c
+++ b/lib/fdtdec.c
@@ -1203,7 +1203,6 @@ static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
 	return 0;
 }
 
-#if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
 /*
  * For CONFIG_OF_SEPARATE, the board may optionally implement this to
  * provide and/or fixup the fdt.
@@ -1226,7 +1225,6 @@ __weak void *board_fdt_blob_setup(int *err)
 
 	return fdt_blob;
 }
-#endif
 
 int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
 {
-- 
2.34.0.rc2.393.gf8c9666880-goog


  parent reply	other threads:[~2021-12-02 16:10 UTC|newest]

Thread overview: 136+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-02 15:58 [PATCH v6 00/25] fdt: Make OF_BOARD a boolean option Simon Glass
2021-12-02 15:58 ` [PATCH v6 01/25] doc: Add documentation about devicetree usage Simon Glass
2021-12-03 12:34   ` Heinrich Schuchardt
2021-12-03 13:09     ` Heinrich Schuchardt
2021-12-03 20:13       ` Simon Glass
2021-12-03 20:28         ` Heinrich Schuchardt
2021-12-04  1:02           ` Simon Glass
2021-12-04 11:06             ` François Ozog
2021-12-04 17:42               ` Simon Glass
2021-12-05  1:14                 ` François Ozog
2021-12-06 15:23                   ` Simon Glass
2021-12-07 22:02                     ` François Ozog
2021-12-02 15:58 ` [PATCH v6 02/25] arm: qemu: Mention -nographic in the docs Simon Glass
2021-12-02 15:58 ` [PATCH v6 03/25] arm: riscv: qemu: Explain how to extract the generated dt Simon Glass
2021-12-02 16:30   ` Heinrich Schuchardt
2021-12-02 16:51     ` Simon Glass
2021-12-02 17:03     ` Tom Rini
2021-12-02 15:58 ` [PATCH v6 04/25] arm: qemu: Add a devicetree file for qemu_arm Simon Glass
2021-12-02 15:58 ` [PATCH v6 05/25] arm: qemu: Add a devicetree file for qemu_arm64 Simon Glass
2021-12-02 15:59 ` [PATCH v6 06/25] riscv: qemu: Add devicetree files for qemu_riscv32/64 Simon Glass
2021-12-02 15:59 ` [PATCH v6 07/25] arm: rpi: Add a devicetree file for rpi_4 Simon Glass
2021-12-02 17:34   ` Mark Kettenis
2021-12-02 18:20     ` François Ozog
2021-12-02 18:25     ` Simon Glass
2021-12-03 12:16       ` Peter Robinson
2021-12-03 20:13         ` Simon Glass
2021-12-02 15:59 ` [PATCH v6 08/25] arm: vexpress: Add a devicetree file for juno Simon Glass
2021-12-02 15:59 ` [PATCH v6 09/25] arm: xenguest_arm64: Add a fake devicetree file Simon Glass
2021-12-02 17:40   ` Oleksandr Andrushchenko
2021-12-02 17:56     ` Tom Rini
2021-12-02 18:05       ` Simon Glass
2021-12-02 18:07         ` Tom Rini
2021-12-02 18:16         ` François Ozog
2021-12-02 18:29           ` Simon Glass
2021-12-02 18:44             ` François Ozog
2021-12-02 19:23               ` Simon Glass
2021-12-03 12:14                 ` Tom Rini
2021-12-03 16:04                   ` Simon Glass
2021-12-03 17:02                     ` François Ozog
2021-12-03 20:14                       ` Simon Glass
2021-12-03 20:21                         ` Tom Rini
2021-12-03 20:27                         ` François Ozog
2021-12-02 17:57     ` Simon Glass
2021-12-03  5:41       ` Oleksandr Andrushchenko
2021-12-03 16:23         ` Simon Glass
2021-12-03 17:02           ` Oleksandr Andrushchenko
2021-12-02 15:59 ` [PATCH v6 10/25] arm: octeontx: " Simon Glass
2021-12-02 15:59 ` [PATCH v6 11/25] arm: xilinx_versal_virt: Add a " Simon Glass
2021-12-02 15:59 ` [PATCH v6 12/25] arm: bcm7xxx: " Simon Glass
2021-12-02 15:59 ` [PATCH v6 13/25] arm: qemu-ppce500: " Simon Glass
2021-12-02 15:59 ` [PATCH v6 14/25] arm: highbank: Add a fake " Simon Glass
2021-12-02 15:59 ` [PATCH v6 15/25] fdt: Make OF_BOARD a bool option Simon Glass
2021-12-02 15:59 ` [PATCH v6 16/25] Drop CONFIG_BINMAN_STANDALONE_FDT Simon Glass
2021-12-02 15:59 ` [PATCH v6 17/25] doc: Update info on devicetree update Simon Glass
2021-12-02 15:59 ` [PATCH v6 18/25] fdt: Move MULTI_DTB_FIT handling out of fdtdec_setup() Simon Glass
2021-12-02 15:59 ` [PATCH v6 19/25] fdt: Drop #ifdefs with MULTI_DTB_FIT Simon Glass
2021-12-02 15:59 ` [PATCH v6 20/25] fdt: Drop CONFIG_SPL_BUILD check in fdtdec_setup() Simon Glass
2021-12-02 15:59 ` Simon Glass [this message]
2021-12-02 15:59 ` [PATCH v6 22/25] fdt: Use if() for fdtcontroladdr check Simon Glass
2021-12-02 15:59 ` [PATCH v6 25/25] fdt: Don't call board_fdt_blob_setup() without OF_BOARD Simon Glass
2021-12-02 16:33 ` [PATCH v6 00/25] fdt: Make OF_BOARD a boolean option François Ozog
2021-12-02 16:38   ` Tom Rini
2021-12-02 16:49     ` Simon Glass
2021-12-02 16:59       ` Tom Rini
2021-12-02 17:07         ` Simon Glass
2021-12-02 18:03           ` Tom Rini
2021-12-02 18:17             ` Simon Glass
2021-12-02 18:34               ` Tom Rini
2021-12-02 19:12                 ` Simon Glass
2021-12-02 22:47                   ` Tom Rini
2021-12-02 23:46                     ` Simon Glass
2021-12-02 22:36                 ` François Ozog
2021-12-02 22:52                   ` Tom Rini
2021-12-02 22:55                     ` Simon Glass
2021-12-03 15:14                       ` Tom Rini
2021-12-03 15:47                         ` Simon Glass
2021-12-03  1:57                 ` Andre Przywara
2021-12-03  2:03                   ` Simon Glass
2021-12-03 20:43                     ` Tom Rini
2021-12-04  1:02                       ` Simon Glass
2021-12-03  1:29               ` Andre Przywara
2021-12-03  1:43                 ` Simon Glass
2021-12-02 17:03     ` Ilias Apalodimas
2021-12-02 17:09       ` Simon Glass
2021-12-03  7:54         ` Ilias Apalodimas
2021-12-02 18:15       ` Mark Kettenis
2021-12-02 18:21         ` Simon Glass
2021-12-02 18:38           ` Tom Rini
2021-12-02 18:47           ` Mark Kettenis
2021-12-02 18:53             ` Simon Glass
2021-12-02 19:22               ` Mark Kettenis
2021-12-02 19:24                 ` Simon Glass
2021-12-02 21:53                   ` Tom Rini
2021-12-02 22:42                     ` Simon Glass
2021-12-02 18:32         ` François Ozog
2021-12-02 19:00           ` Mark Kettenis
2021-12-03  7:50         ` Ilias Apalodimas
2021-12-03 10:27           ` Mark Kettenis
2021-12-03 13:59             ` Heinrich Schuchardt
2021-12-03 14:30               ` Ilias Apalodimas
2021-12-03 14:35                 ` Tom Rini
2021-12-03 15:10                   ` Ilias Apalodimas
2021-12-03  1:19       ` Andre Przywara
2021-12-02 16:39   ` Simon Glass
2021-12-02 16:58     ` Peter Maydell
2021-12-02 16:59     ` François Ozog
2021-12-03  1:10     ` Andre Przywara
2021-12-02 16:47 ` Heinrich Schuchardt
2021-12-02 16:50   ` Simon Glass
2021-12-03 10:03     ` Heinrich Schuchardt
2021-12-06 15:22       ` Simon Glass
2021-12-03 14:55 ` Tom Rini
2021-12-03 15:39   ` Simon Glass
2021-12-03 15:57     ` Tom Rini
2021-12-03 16:18       ` Simon Glass
2021-12-03 16:30         ` Tom Rini
2021-12-03 16:45           ` Simon Glass
2021-12-03 19:25             ` Tom Rini
2021-12-04  1:01               ` Simon Glass
2021-12-04 13:52                 ` Tom Rini
2021-12-04 15:20                   ` Simon Glass
2021-12-04 15:58                     ` Ilias Apalodimas
2021-12-04 17:25                       ` Simon Glass
2021-12-04 18:46                         ` Ilias Apalodimas
2021-12-04 16:02                     ` Mark Kettenis
2021-12-04 17:25                       ` Simon Glass
2021-12-04 16:55                     ` François Ozog
2021-12-04 17:35                       ` Simon Glass
2021-12-04 18:52                         ` François Ozog
2021-12-05 13:32                           ` Tom Rini
2021-12-04 18:03                     ` Tom Rini
2021-12-04 22:09                       ` Simon Glass
2021-12-05 13:32                         ` Tom Rini
2021-12-06 15:24                           ` Simon Glass
2021-12-06 15:43                             ` Tom Rini
     [not found] ` <20211202155919.2429190-25-sjg@chromium.org>
2021-12-06 18:45   ` [PATCH v6 24/25] fdt: Drop remaining preprocessor macros in fdtdec_setup() Ilias Apalodimas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211202155919.2429190-22-sjg@chromium.org \
    --to=sjg@chromium.org \
    --cc=francois.ozog@linaro.org \
    --cc=ilias.apalodimas@linaro.org \
    --cc=mark.kettenis@xs4all.nl \
    --cc=seanga2@gmail.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=vanbaren@cideas.com \
    --cc=xypron.glpk@gmx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.