Re: [U-Boot] [PATCH 1/3] spl: mmc: fix switch statement

2016-10-16 Thread Tom Rini
On Sat, Oct 15, 2016 at 07:10:14PM +0200, Max Krummenacher wrote: > 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

Re: [U-Boot] [PATCH 1/3] spl: mmc: fix switch statement

2016-10-15 Thread Marek Vasut
On 10/15/2016 09:18 PM, Max Krummenacher wrote: > Hi Marek > > Am Samstag, den 15.10.2016, 19:29 +0200 schrieb Marek Vasut: >> On 10/15/2016 07:10 PM, Max Krummenacher wrote: >>> If CONFIG_SPL_LIBCOMMON_SUPPORT is not defined there is a lone case >>> statement >>> at the end of the switch leading

Re: [U-Boot] [PATCH 1/3] spl: mmc: fix switch statement

2016-10-15 Thread Max Krummenacher
Hi Marek Am Samstag, den 15.10.2016, 19:29 +0200 schrieb Marek Vasut: > On 10/15/2016 07:10 PM, Max Krummenacher wrote: > > 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

Re: [U-Boot] [PATCH 1/3] spl: mmc: fix switch statement

2016-10-15 Thread Marek Vasut
On 10/15/2016 07:10 PM, Max Krummenacher wrote: > 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

[U-Boot] [PATCH 1/3] spl: mmc: fix switch statement

2016-10-15 Thread Max Krummenacher
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