From 7d7dd821b0921d762a1dbfae48f2c3aa3ff29df6 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 24 Sep 2016 18:20:01 -0600 Subject: 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 Reviewed-by: Tom Rini --- common/spl/spl_ubi.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'common/spl/spl_ubi.c') diff --git a/common/spl/spl_ubi.c b/common/spl/spl_ubi.c index d64e6cf..3ef00aa 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); -- cgit v1.1