From: Simon Glass Date: Fri, 17 Dec 2021 03:59:27 +0000 (-0700) Subject: fdt: Drop #ifdef around board_fdt_blob_setup() X-Git-Tag: baikal/mips/sdk5.9~7^2^2~112^2~5^2~12 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=48a66f3e8795095dbb92bda842585b45bf22a420;p=uboot.git fdt: Drop #ifdef around board_fdt_blob_setup() This serves no purpose. Drop it. Signed-off-by: Simon Glass --- diff --git a/lib/fdtdec.c b/lib/fdtdec.c index fbdc92c081..299a2c3a32 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) {