diff options
author | Michal Simek <michal.simek@xilinx.com> | 2016-04-05 13:34:20 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-04-11 20:48:24 -0400 |
commit | d9b2678e0a5e5781b37487ccb943ddcbf0623bb0 (patch) | |
tree | fa98cd9cd2ed3e722370ff0644a40da72ab4df28 /include/part.h | |
parent | 7f961c90d76a485e16b2c52f6f66e58c909a5545 (diff) | |
download | u-boot-d9b2678e0a5e5781b37487ccb943ddcbf0623bb0.tar.gz |
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 <nathan@nathanrossi.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/part.h')
-rw-r--r-- | include/part.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |