Commit d9b2678e0a5e5781b37487ccb943ddcbf0623bb0

Authored by Michal Simek
Committed by Tom Rini
1 parent 7f961c90d7

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -207,7 +207,7 @@
207 207 */
208 208 #ifdef CONFIG_SPL_BUILD
209 209 # define part_print_ptr(x) NULL
210   -# if defined(CONFIG_SPL_EXT_SUPPORT) || \
  210 +# if defined(CONFIG_SPL_EXT_SUPPORT) || defined(CONFIG_SPL_FAT_SUPPORT) || \
211 211 defined(CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION)
212 212 # define part_get_info_ptr(x) x
213 213 # else