1
0
Fork 0

platform/x86: asus-wmi: Refactor error handling

Remove exit label as it is only used once from the point in code where no
cleanup is required and return can be called immediately.

Signed-off-by: Yurii Pavlovskyi <yurii.pavlovskyi@gmail.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
alistair/sunxi64-5.4-dsi
Yurii Pavlovskyi 2019-05-14 21:03:50 +02:00 committed by Andy Shevchenko
parent 2b5767bf86
commit 1827f3f06a
1 changed files with 1 additions and 5 deletions

View File

@ -255,7 +255,7 @@ static int asus_wmi_evaluate_method3(u32 method_id,
&input, &output);
if (ACPI_FAILURE(status))
goto exit;
return -EIO;
obj = (union acpi_object *)output.pointer;
if (obj && obj->type == ACPI_TYPE_INTEGER)
@ -266,10 +266,6 @@ static int asus_wmi_evaluate_method3(u32 method_id,
kfree(obj);
exit:
if (ACPI_FAILURE(status))
return -EIO;
if (tmp == ASUS_WMI_UNSUPPORTED_METHOD)
return -ENODEV;