[U-Boot] [PATCH] disk: part: Enable get_info pointer for CONFIG_SPL_FAT_SUPPORT

Michal Simek michal.simek at xilinx.com
Tue Apr 5 13:34:20 CEST 2016


The patch "dm: part: Convert partition API use to linker lists"
(sha1: 96e5b03c8ab749b6547f6a3ceb4d4b9f274211aa) is adding new
dependency for enabling SPL_EXT_SUPPORT to be able to get
information about DOS partition.
get_info is also required for FAT support only which is used on Xilinx
Zynq boards.

Reported-by: Nathan Rossi <nathan at nathanrossi.com>
Signed-off-by: Michal Simek <michal.simek at xilinx.com>
---

 include/part.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/part.h b/include/part.h
index dc8e72e08f6d..e3811c68de8a 100644
--- a/include/part.h
+++ b/include/part.h
@@ -207,7 +207,7 @@ static inline int blk_get_device_part_str(const char *ifname,
  */
 #ifdef CONFIG_SPL_BUILD
 # define part_print_ptr(x)	NULL
-# if defined(CONFIG_SPL_EXT_SUPPORT) || \
+# if defined(CONFIG_SPL_EXT_SUPPORT) || defined(CONFIG_SPL_FAT_SUPPORT) || \
 	defined(CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION)
 #  define part_get_info_ptr(x)	x
 # else
-- 
1.9.1



More information about the U-Boot mailing list