mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 19:34:35 +00:00
use proper fallthrough annotations
In some cases in the generic code, we were already using switch/case fallthrough annotations comments, though in a way which might not be understood by most compilers. Replace two non-standard /* no break */ comments with our fallthrough; statement-like macro, to make this visible to the compiler. Also use this macro in place of an /* Fall through */ comment, to be more consistent. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
2938eb1e02
commit
26b2482f12
3 changed files with 3 additions and 3 deletions
|
@ -484,7 +484,7 @@ int cmd_get_data_size(const char *arg, int default_size)
|
||||||
case 'q':
|
case 'q':
|
||||||
if (MEM_SUPPORT_64BIT_DATA)
|
if (MEM_SUPPORT_64BIT_DATA)
|
||||||
return 8;
|
return 8;
|
||||||
/* no break */
|
fallthrough;
|
||||||
default:
|
default:
|
||||||
return CMD_DATA_SIZE_ERR;
|
return CMD_DATA_SIZE_ERR;
|
||||||
}
|
}
|
||||||
|
|
|
@ -282,7 +282,7 @@ static int _vprintf(struct printf_info *info, const char *fmt, va_list va)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
islong = true;
|
islong = true;
|
||||||
/* no break */
|
fallthrough;
|
||||||
case 'x':
|
case 'x':
|
||||||
if (islong) {
|
if (islong) {
|
||||||
num = va_arg(va, unsigned long);
|
num = va_arg(va, unsigned long);
|
||||||
|
|
|
@ -1559,7 +1559,7 @@ common:
|
||||||
puts("*** ERROR: `ipaddr' not set\n");
|
puts("*** ERROR: `ipaddr' not set\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
/* Fall through */
|
fallthrough;
|
||||||
|
|
||||||
#ifdef CONFIG_CMD_RARP
|
#ifdef CONFIG_CMD_RARP
|
||||||
case RARP:
|
case RARP:
|
||||||
|
|
Loading…
Add table
Reference in a new issue