From: Seung-Woo Kim Date: Tue, 19 Sep 2017 04:13:54 +0000 (+0900) Subject: spl: spl_mmc: add __maybe_unused to mmc_load_image_raw_sector() X-Git-Tag: submit/tizen/20170922.071838~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33793ba9505a061ce0674a74eaa359e84cc6219a;p=platform%2Fkernel%2Fu-boot.git spl: spl_mmc: add __maybe_unused to mmc_load_image_raw_sector() If there are no CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION, CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR and CONFIG_SPL_OS_BOOT, there is unused-function build warning. Add __maybe_unused macro to remove the warning. Change-Id: I4c8c8c22c949754a15cd951b5de61896ab341e32 Signed-off-by: Seung-Woo Kim --- diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c index 18c1b59b22..762b717c9f 100644 --- a/common/spl/spl_mmc.c +++ b/common/spl/spl_mmc.c @@ -52,8 +52,9 @@ static ulong h_spl_load_read(struct spl_load_info *load, ulong sector, return blk_dread(mmc_get_blk_desc(mmc), sector, count, buf); } -static int mmc_load_image_raw_sector(struct spl_image_info *spl_image, - struct mmc *mmc, unsigned long sector) +static __maybe_unused +int mmc_load_image_raw_sector(struct spl_image_info *spl_image, + struct mmc *mmc, unsigned long sector) { unsigned long count; struct image_header *header;