diff mbox series

fdt_support.h: Remove duplicated declarations

Message ID 20210918093723.758762-1-bmeng.cn@gmail.com
State Accepted
Commit 933bf2644591281ed96f9d5771cbb35fe95bcb00
Delegated to: Simon Glass
Headers show
Series fdt_support.h: Remove duplicated declarations | expand

Commit Message

Bin Meng Sept. 18, 2021, 9:37 a.m. UTC
There are two duplicated declarations for ft_cpu_setup() and
ft_pci_setup().

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 include/fdt_support.h | 2 --
 1 file changed, 2 deletions(-)

Comments

Vladimir Oltean Sept. 18, 2021, 11:52 a.m. UTC | #1
On Sat, Sep 18, 2021 at 05:37:23PM +0800, Bin Meng wrote:
> There are two duplicated declarations for ft_cpu_setup() and
> ft_pci_setup().
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---

Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Simon Glass Sept. 26, 2021, 6:40 p.m. UTC | #2
On Sat, Sep 18, 2021 at 05:37:23PM +0800, Bin Meng wrote:
> There are two duplicated declarations for ft_cpu_setup() and
> ft_pci_setup().
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---

Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Applied to u-boot-dm/next, thanks!
diff mbox series

Patch

diff --git a/include/fdt_support.h b/include/fdt_support.h
index f6f46bb8e9..72a5b90c97 100644
--- a/include/fdt_support.h
+++ b/include/fdt_support.h
@@ -203,8 +203,6 @@  char *board_fdt_chosen_bootargs(void);
  * called at the end of the image_setup_libfdt() is to do that convertion.
  */
 void ft_board_setup_ex(void *blob, struct bd_info *bd);
-void ft_cpu_setup(void *blob, struct bd_info *bd);
-void ft_pci_setup(void *blob, struct bd_info *bd);
 
 /**
  * Add system-specific data to the FDT before booting the OS.