From 79ab99cd78bb89076e6412462d86b40c7e20626d Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Tue, 1 Nov 2016 15:04:20 +0100 Subject: spl: mmc: fix switch statement If CONFIG_SPL_LIBCOMMON_SUPPORT is not defined there is a lone case statement at the end of the switch leading to a compile error. Remove the offending case statement. | common/spl/spl_mmc.c:339:7: error: label at end of compound statement Signed-off-by: Max Krummenacher Reviewed-by: Tom Rini Acked-by: Marek Vasut (cherry picked from commit c8d7647f639813cff08a4a7de62db815829ec72b) --- common/spl/spl_mmc.c | 1 - 1 file changed, 1 deletion(-) (limited to 'common') diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c index c674e61cbd..367b4e4bd7 100644 --- a/common/spl/spl_mmc.c +++ b/common/spl/spl_mmc.c @@ -342,7 +342,6 @@ static int spl_mmc_load_image(struct spl_image_info *spl_image, return err; break; - case MMCSD_MODE_UNDEFINED: #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT default: puts("spl: mmc: wrong boot mode\n"); -- cgit v1.2.3