diff options
Diffstat (limited to 'drivers/acpi/acpica/exconfig.c')
-rw-r--r-- | drivers/acpi/acpica/exconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/exconfig.c b/drivers/acpi/acpica/exconfig.c index b4f42f56fc34..d0cc2a40edfb 100644 --- a/drivers/acpi/acpica/exconfig.c +++ b/drivers/acpi/acpica/exconfig.c | |||
@@ -304,7 +304,7 @@ acpi_ex_region_read(union acpi_operand_object *obj_desc, u32 length, u8 *buffer) | |||
304 | acpi_ev_address_space_dispatch(obj_desc, NULL, ACPI_READ, | 304 | acpi_ev_address_space_dispatch(obj_desc, NULL, ACPI_READ, |
305 | region_offset, 8, &value); | 305 | region_offset, 8, &value); |
306 | if (ACPI_FAILURE(status)) { | 306 | if (ACPI_FAILURE(status)) { |
307 | return status; | 307 | return (status); |
308 | } | 308 | } |
309 | 309 | ||
310 | *buffer = (u8)value; | 310 | *buffer = (u8)value; |
@@ -312,7 +312,7 @@ acpi_ex_region_read(union acpi_operand_object *obj_desc, u32 length, u8 *buffer) | |||
312 | region_offset++; | 312 | region_offset++; |
313 | } | 313 | } |
314 | 314 | ||
315 | return AE_OK; | 315 | return (AE_OK); |
316 | } | 316 | } |
317 | 317 | ||
318 | /******************************************************************************* | 318 | /******************************************************************************* |