ide: Drop CONFIG_START_IDE

This is not used by any board. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2023-04-25 10:54:28 -06:00 committed by Tom Rini
parent 4d89f4bf2d
commit 0917851100
2 changed files with 0 additions and 12 deletions

View file

@ -523,12 +523,7 @@ static int initr_post(void)
static int initr_ide(void)
{
puts("IDE: ");
#if defined(CONFIG_START_IDE)
if (board_start_ide())
ide_init();
#else
ide_init();
#endif
return 0;
}
#endif

View file

@ -47,11 +47,4 @@ void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts);
void ide_led(uchar led, uchar status);
/**
* board_start_ide() - Start up the board IDE interfac
*
* Return: 0 if ok
*/
int board_start_ide(void);
#endif /* _IDE_H */