diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2018-03-12 09:22:44 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-16 14:54:14 -0400 |
commit | f7bd1c3c97871cca021d0019c62fef2f1e382f72 (patch) | |
tree | 60f2aae0e875cf4978f27558f82cafddb01f38b4 /include | |
parent | e6e92170a467a4ba79c1f6b16e58da6c6a1a37e0 (diff) | |
download | u-boot-f7bd1c3c97871cca021d0019c62fef2f1e382f72.tar.gz |
post: remove reference to power functions
The 2 functions board_power_mode and board_poweroff
are no more existing in U-Boot code (check with grep)
This patch updates the documentation and removes
the unnecessary prototypes.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index c6346287bc..9ff11adf26 100644 --- a/include/common.h +++ b/include/common.h @@ -415,7 +415,6 @@ int board_fix_fdt (void *rw_fdt_blob); /* manipulate the U-Boot fdt before its r int board_late_init (void); int board_postclk_init (void); /* after clocks/timebase, before env/serial */ int board_early_init_r (void); -void board_poweroff (void); #if defined(CONFIG_SYS_DRAM_TEST) int testdram(void); |