diff options
Diffstat (limited to 'drivers/acpi/utilities/utcopy.c')
-rw-r--r-- | drivers/acpi/utilities/utcopy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/acpi/utilities/utcopy.c b/drivers/acpi/utilities/utcopy.c index b56953d2b59e..ba899714733b 100644 --- a/drivers/acpi/utilities/utcopy.c +++ b/drivers/acpi/utilities/utcopy.c | |||
@@ -709,7 +709,15 @@ acpi_ut_copy_simple_object(union acpi_operand_object *source_desc, | |||
709 | /* | 709 | /* |
710 | * We copied the reference object, so we now must add a reference | 710 | * We copied the reference object, so we now must add a reference |
711 | * to the object pointed to by the reference | 711 | * to the object pointed to by the reference |
712 | * | ||
713 | * DDBHandle reference (from Load/load_table is a special reference, | ||
714 | * it's Reference.Object is the table index, so does not need to | ||
715 | * increase the reference count | ||
712 | */ | 716 | */ |
717 | if (source_desc->reference.opcode == AML_LOAD_OP) { | ||
718 | break; | ||
719 | } | ||
720 | |||
713 | acpi_ut_add_reference(source_desc->reference.object); | 721 | acpi_ut_add_reference(source_desc->reference.object); |
714 | break; | 722 | break; |
715 | 723 | ||