ACK: [PATCH 05/12] acpi: method: re-arrange code to avoid declarations after code
IvanHu
ivan.hu at canonical.com
Thu Jun 12 02:07:01 UTC 2014
On 06/09/2014 12:42 AM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
> src/acpi/method/method.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/src/acpi/method/method.c b/src/acpi/method/method.c
> index 9b789cf..4324b2d 100644
> --- a/src/acpi/method/method.c
> +++ b/src/acpi/method/method.c
> @@ -377,10 +377,11 @@ static int method_init(fwts_framework *fw)
>
> /* Some systems have multiple FADTs, sigh */
> for (i = 0; i < 256; i++) {
> + fwts_acpi_table_fadt *fadt;
> int ret = fwts_acpi_find_table(fw, "FACP", i, &info);
> if (ret == FWTS_NULL_POINTER || info == NULL)
> break;
> - fwts_acpi_table_fadt *fadt = (fwts_acpi_table_fadt*)info->data;
> + fadt = (fwts_acpi_table_fadt*)info->data;
> got_fadt = true;
> if (fadt->preferred_pm_profile == 2) {
> fadt_mobile_platform = true;
> @@ -5140,4 +5141,4 @@ static fwts_framework_ops method_ops = {
> .minor_tests = method_tests
> };
>
> -FWTS_REGISTER("method", &method_ops, FWTS_TEST_ANYTIME, FWTS_FLAG_BATCH);
> +FWTS_REGISTER("method", &method_ops, FWTS_TEST_ANYTIME, FWTS_FLAG_BATCH)
>
Acked-by: Ivan Hu <ivan.hu at canonical.com>
More information about the fwts-devel
mailing list