aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/exoparg2.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/acpica/exoparg2.c')
-rw-r--r--drivers/acpi/acpica/exoparg2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/exoparg2.c b/drivers/acpi/acpica/exoparg2.c
index 6fac5e0a698a..b8944ebb1081 100644
--- a/drivers/acpi/acpica/exoparg2.c
+++ b/drivers/acpi/acpica/exoparg2.c
@@ -337,8 +337,8 @@ acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state)
337 * Copy the raw buffer data with no transform. 337 * Copy the raw buffer data with no transform.
338 * (NULL terminated already) 338 * (NULL terminated already)
339 */ 339 */
340 ACPI_MEMCPY(return_desc->string.pointer, 340 memcpy(return_desc->string.pointer,
341 operand[0]->buffer.pointer, length); 341 operand[0]->buffer.pointer, length);
342 break; 342 break;
343 343
344 case AML_CONCAT_RES_OP: 344 case AML_CONCAT_RES_OP: