diff options
Diffstat (limited to 'drivers/acpi/acpica/dswexec.c')
-rw-r--r-- | drivers/acpi/acpica/dswexec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/acpica/dswexec.c b/drivers/acpi/acpica/dswexec.c index 58593931be96..44f8325c2bae 100644 --- a/drivers/acpi/acpica/dswexec.c +++ b/drivers/acpi/acpica/dswexec.c | |||
@@ -6,7 +6,7 @@ | |||
6 | *****************************************************************************/ | 6 | *****************************************************************************/ |
7 | 7 | ||
8 | /* | 8 | /* |
9 | * Copyright (C) 2000 - 2012, Intel Corp. | 9 | * Copyright (C) 2000 - 2013, Intel Corp. |
10 | * All rights reserved. | 10 | * All rights reserved. |
11 | * | 11 | * |
12 | * Redistribution and use in source and binary forms, with or without | 12 | * Redistribution and use in source and binary forms, with or without |
@@ -149,7 +149,7 @@ acpi_ds_get_predicate_value(struct acpi_walk_state *walk_state, | |||
149 | 149 | ||
150 | /* Truncate the predicate to 32-bits if necessary */ | 150 | /* Truncate the predicate to 32-bits if necessary */ |
151 | 151 | ||
152 | acpi_ex_truncate_for32bit_table(local_obj_desc); | 152 | (void)acpi_ex_truncate_for32bit_table(local_obj_desc); |
153 | 153 | ||
154 | /* | 154 | /* |
155 | * Save the result of the predicate evaluation on | 155 | * Save the result of the predicate evaluation on |
@@ -706,7 +706,7 @@ acpi_status acpi_ds_exec_end_op(struct acpi_walk_state *walk_state) | |||
706 | * ACPI 2.0 support for 64-bit integers: Truncate numeric | 706 | * ACPI 2.0 support for 64-bit integers: Truncate numeric |
707 | * result value if we are executing from a 32-bit ACPI table | 707 | * result value if we are executing from a 32-bit ACPI table |
708 | */ | 708 | */ |
709 | acpi_ex_truncate_for32bit_table(walk_state->result_obj); | 709 | (void)acpi_ex_truncate_for32bit_table(walk_state->result_obj); |
710 | 710 | ||
711 | /* | 711 | /* |
712 | * Check if we just completed the evaluation of a | 712 | * Check if we just completed the evaluation of a |