diff options
author | Simon Glass | 2016-09-24 18:20:07 -0600 |
---|---|---|
committer | Tom Rini | 2016-10-06 15:07:33 -0400 |
commit | 7557147927fcc4099d62f564f42babc2370834f3 (patch) | |
tree | b216c68d8b2f986c652e3639b5feeec528b8459d /include/spl.h | |
parent | 56df46351ad56551f8ea7e54d217ea6b709e686c (diff) |
spl: Convert spl_sata_load_image() to use linker list
Add a linker list declaration for this method and remove the explicit
switch() code.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/spl.h')
-rw-r--r-- | include/spl.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/spl.h b/include/spl.h index 7270cc21ae7..2d0e1287129 100644 --- a/include/spl.h +++ b/include/spl.h @@ -187,9 +187,6 @@ int spl_spi_load_image(struct spl_boot_device *bootdev); /* Ethernet SPL functions */ int spl_net_load_image(struct spl_boot_device *bootdev); -/* SATA SPL functions */ -int spl_sata_load_image(struct spl_boot_device *bootdev); - /* SPL FAT image functions */ int spl_load_image_fat(struct blk_desc *block_dev, int partition, const char *filename); |