1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

Drop CONFIG_CMD_DOC

This is not used in U-Boot, and the only usage calls a non-existent
function. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2017-01-23 13:31:27 -07:00
committed by Tom Rini
parent a009f36cfe
commit a8523a808f
6 changed files with 0 additions and 30 deletions

View File

@@ -619,15 +619,6 @@ static int initr_scsi(void)
}
#endif
#if defined(CONFIG_CMD_DOC)
static int initr_doc(void)
{
puts("DOC: ");
doc_init();
return 0;
}
#endif
#ifdef CONFIG_BITBANGMII
static int initr_bbmii(void)
{
@@ -913,10 +904,6 @@ init_fnc_t init_sequence_r[] = {
INIT_FUNC_WATCHDOG_RESET
initr_scsi,
#endif
#ifdef CONFIG_CMD_DOC
INIT_FUNC_WATCHDOG_RESET
initr_doc,
#endif
#ifdef CONFIG_BITBANGMII
initr_bbmii,
#endif