From d9b2678e0a5e5781b37487ccb943ddcbf0623bb0 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Tue, 5 Apr 2016 13:34:20 +0200 Subject: [PATCH] disk: part: Enable get_info pointer for CONFIG_SPL_FAT_SUPPORT 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 Signed-off-by: Michal Simek Reviewed-by: Tom Rini Reviewed-by: Simon Glass --- include/part.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/part.h b/include/part.h index dc8e72e08f..e3811c68de 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 -- 2.39.2