ACK: [PATCH] acpi: madt: replace continue with empty statement ;
ivanhu
ivan.hu at canonical.com
Tue Apr 6 05:38:39 UTC 2021
On 3/30/21 6:43 PM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Some static analyzers warn that the continue has no effect, clean
> this up by replacing it with ; instead.
>
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
> src/acpi/madt/madt.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/src/acpi/madt/madt.c b/src/acpi/madt/madt.c
> index 295cd012..e164e5e1 100644
> --- a/src/acpi/madt/madt.c
> +++ b/src/acpi/madt/madt.c
> @@ -883,7 +883,8 @@ static int madt_local_sapic(fwts_framework *fw,
> }
>
> for (tmp = 0, ii = 0; ii < 3; tmp |= lsapic->reserved[ii], ii++)
> - continue;
> + ;
> +
> if (tmp)
> fwts_failed(fw, LOG_LEVEL_MEDIUM,
> "MADTLSAPICReservedNonZero",
Acked-by: Ivan Hu <ivan.hu at canonical.com>
More information about the fwts-devel
mailing list