diff options
author | Tom Rini <trini@konsulko.com> | 2022-06-10 22:59:30 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-06-28 17:03:32 -0400 |
commit | 713a8cbb94896350b047c590d0246c1d1fe1400f (patch) | |
tree | 7b1c1503a38d02cd9e3a2e2a837444aa3a6fcf05 /include/ide.h | |
parent | 9836c433094ebbd8e4d06152d09b9a72013d7772 (diff) | |
download | u-boot-713a8cbb94896350b047c590d0246c1d1fe1400f.tar.gz u-boot-713a8cbb94896350b047c590d0246c1d1fe1400f.tar.bz2 u-boot-713a8cbb94896350b047c590d0246c1d1fe1400f.zip |
block: ide: Remove ide_preinit function
The only platform currently that defines an ide_preinit function has an
empty one that immediately returns. Remove this hook.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/ide.h')
-rw-r--r-- | include/ide.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/ide.h b/include/ide.h index 2994b7a762..426cef4e39 100644 --- a/include/ide.h +++ b/include/ide.h @@ -33,10 +33,6 @@ ulong ide_write(struct blk_desc *block_dev, lbaint_t blknr, lbaint_t blkcnt, const void *buffer); #endif -#ifdef CONFIG_IDE_PREINIT -int ide_preinit(void); -#endif - #if defined(CONFIG_OF_IDE_FIXUP) int ide_device_present(int dev); #endif |