summaryrefslogtreecommitdiff
path: root/common/spl/spl_ubi.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-09-24 18:20:01 -0600
committerTom Rini <trini@konsulko.com>2016-10-06 15:06:56 -0400
commit7d7dd821b0921d762a1dbfae48f2c3aa3ff29df6 (patch)
tree6b5aa20f42ca9461ce70eabb72c66e8a5b705ada /common/spl/spl_ubi.c
parent0fed9c7ed69c7f85f0f76fd58c1ef6ea991a786c (diff)
spl: Convert spl_ubi_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 'common/spl/spl_ubi.c')
-rw-r--r--common/spl/spl_ubi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/spl/spl_ubi.c b/common/spl/spl_ubi.c
index d64e6cf57d..3ef00aa0b0 100644
--- a/common/spl/spl_ubi.c
+++ b/common/spl/spl_ubi.c
@@ -76,3 +76,6 @@ out:
#endif
return ret;
}
+/* Use priorty 0 so that Ubi will override NAND and ONENAND methods */
+SPL_LOAD_IMAGE_METHOD(0, BOOT_DEVICE_NAND, spl_ubi_load_image);
+SPL_LOAD_IMAGE_METHOD(0, BOOT_DEVICE_ONENAND, spl_ubi_load_image);