diff mbox series

[U-Boot] common: remove unused prototypes

Message ID 1520842763-7262-1-git-send-email-patrick.delaunay@st.com
State Accepted
Commit e6e92170a467a4ba79c1f6b16e58da6c6a1a37e0
Delegated to: Tom Rini
Headers show
Series [U-Boot] common: remove unused prototypes | expand

Commit Message

Patrick DELAUNAY March 12, 2018, 8:19 a.m. UTC
Remove the prototypes for 4 functions no more existing
in U-Boot code (checked by grep):
- checkflash
- checkdram
- mdm_init
- setup_board_extra

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
---

 include/common.h | 10 ----------
 1 file changed, 10 deletions(-)

Comments

Tom Rini March 18, 2018, 2:57 p.m. UTC | #1
On Mon, Mar 12, 2018 at 09:19:22AM +0100, Patrick Delaunay wrote:

> Remove the prototypes for 4 functions no more existing
> in U-Boot code (checked by grep):
> - checkflash
> - checkdram
> - mdm_init
> - setup_board_extra
> 
> Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/include/common.h b/include/common.h
index 0fe9439..0728aa6 100644
--- a/include/common.h
+++ b/include/common.h
@@ -151,26 +151,16 @@  void arch_setup_gd(gd_t *gd_ptr);
 
 int checkboard(void);
 int show_board_info(void);
-int checkflash(void);
-int checkdram(void);
 int last_stage_init(void);
 extern ulong monitor_flash_len;
 int mac_read_from_eeprom(void);
 extern u8 __dtb_dt_begin[];	/* embedded device tree blob */
 extern u8 __dtb_dt_spl_begin[];	/* embedded device tree blob for SPL/TPL */
 int set_cpu_clk_info(void);
-int mdm_init(void);
 int print_cpuinfo(void);
 int update_flash_size(int flash_size);
 int arch_early_init_r(void);
 
-/*
- * setup_board_extra() - Fill in extra details in the bd_t structure
- *
- * @return 0 if OK, -ve on error
- */
-int setup_board_extra(void);
-
 /**
  * arch_fsp_init() - perform firmware support package init
  *