diff options
author | Axel Lin <axel.lin@ingics.com> | 2016-09-18 21:33:51 -0400 |
---|---|---|
committer | Darren Hart <dvhart@linux.intel.com> | 2016-12-13 12:29:01 -0500 |
commit | 3526ecadc86cc1d485153255498cde7d0275dd37 (patch) | |
tree | 2b46fccd8bda332ae1ca2b9c91e6b28f0114e86e /drivers/platform/x86/intel-smartconnect.c | |
parent | 5dc444b804eae57abaf6f05663d9cb9f030bb9d2 (diff) |
platform/x86: Use ACPI_FAILURE at appropriate places
Use ACPI_FAILURE() to replace !ACPI_SUCCESS(), this avoid !! operations.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/intel-smartconnect.c')
-rw-r--r-- | drivers/platform/x86/intel-smartconnect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel-smartconnect.c b/drivers/platform/x86/intel-smartconnect.c index 04cf5dffdfd9..bbe4c06c769f 100644 --- a/drivers/platform/x86/intel-smartconnect.c +++ b/drivers/platform/x86/intel-smartconnect.c | |||
@@ -29,7 +29,7 @@ static int smartconnect_acpi_init(struct acpi_device *acpi) | |||
29 | acpi_status status; | 29 | acpi_status status; |
30 | 30 | ||
31 | status = acpi_evaluate_integer(acpi->handle, "GAOS", NULL, &value); | 31 | status = acpi_evaluate_integer(acpi->handle, "GAOS", NULL, &value); |
32 | if (!ACPI_SUCCESS(status)) | 32 | if (ACPI_FAILURE(status)) |
33 | return -EINVAL; | 33 | return -EINVAL; |
34 | 34 | ||
35 | if (value & 0x1) { | 35 | if (value & 0x1) { |