]> git.sur5r.net Git - u-boot/commit
env: Properly check for BLK support
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>
Thu, 22 Mar 2018 21:53:50 +0000 (22:53 +0100)
committerTom Rini <trini@konsulko.com>
Sat, 7 Apr 2018 00:45:44 +0000 (20:45 -0400)
commitd48b8d1138a45ee88f2af0a883d87a1a93ae0592
treee59ef5cd016128de9972e3c1e02229ee08c3631e
parent4abd9cecee71e269d3af4f3c4c7aec492b9a642f
env: Properly check for BLK support

Use CONFIG_IS_ENABLED to see if CONFIG_BLK is enabled. Otherwise
SPL compilation breaks on boards which do have CONFIG_BLK enabled but
not DM_MMC for the SPL as follows:

env/mmc.c: In function ‘init_mmc_for_env’:
env/mmc.c:164:6: warning: implicit declaration of function ‘blk_get_from_parent’; did you mean ‘efi_get_ram_base’? [-Wimplicit-function-declaration]
  if (blk_get_from_parent(mmc->dev, &dev))
      ^~~~~~~~~~~~~~~~~~~
      efi_get_ram_base
env/mmc.c:164:29: error: ‘struct mmc’ has no member named ‘dev’
  if (blk_get_from_parent(mmc->dev, &dev))
                             ^~

Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Reviewed-by: Simon Glass <sjg@chromium.org>
env/mmc.c