diff options
author | Bin Meng | 2021-09-18 17:37:23 +0800 |
---|---|---|
committer | Simon Glass | 2021-09-25 09:46:15 -0600 |
commit | 933bf2644591281ed96f9d5771cbb35fe95bcb00 (patch) | |
tree | 5a7fd6cc6c4da537f64d38e9ffc216220afe7b08 /include/fdt_support.h | |
parent | 2348e72d6d56129cf84c5c98cf9d5631efb098e9 (diff) |
fdt_support.h: Remove duplicated declarations
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>
Diffstat (limited to 'include/fdt_support.h')
-rw-r--r-- | include/fdt_support.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/fdt_support.h b/include/fdt_support.h index f6f46bb8e9c..72a5b90c97c 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. |