diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2017-09-02 08:43:52 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-03 15:30:34 -0400 |
commit | f1823d3aaa72cff4f6e979e3c4e4362c3ccc0751 (patch) | |
tree | a887af66bb62d5053a2d9eeb178d6be9a7addb5d /drivers | |
parent | 9e18eae2760d20f04f97ce190036e0c6ee67e43d (diff) | |
download | u-boot-f1823d3aaa72cff4f6e979e3c4e4362c3ccc0751.tar.gz u-boot-f1823d3aaa72cff4f6e979e3c4e4362c3ccc0751.tar.xz u-boot-f1823d3aaa72cff4f6e979e3c4e4362c3ccc0751.zip |
block: ide: Drop CONFIG_IDE_INIT_POSTRESET
This is not referenced anywhere. Drop it.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/block/ide.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/block/ide.c b/drivers/block/ide.c index edcf87b8c1..cea0397eb2 100644 --- a/drivers/block/ide.c +++ b/drivers/block/ide.c @@ -792,15 +792,6 @@ void ide_init(void) /* ATAPI Drives seems to need a proper IDE Reset */ ide_reset(); -#ifdef CONFIG_IDE_INIT_POSTRESET - WATCHDOG_RESET(); - - if (ide_init_postreset()) { - puts("ide_preinit_postreset failed\n"); - return; - } -#endif /* CONFIG_IDE_INIT_POSTRESET */ - /* * Wait for IDE to get ready. * According to spec, this can take up to 31 seconds! |