]> err.no Git - linux-2.6/blobdiff - drivers/acpi/executer/exoparg6.c
ACPICA: Cosmetic changes only, no functional changes
[linux-2.6] / drivers / acpi / executer / exoparg6.c
index bd80a9cb3d6529bce2a2804800639e4d0578d93c..163b2b3d9ce2d4b10058fd71d2612fd8dde1ad27 100644 (file)
@@ -322,8 +322,6 @@ acpi_status acpi_ex_opcode_6A_0T_1R(struct acpi_walk_state * walk_state)
                goto cleanup;
        }
 
-       walk_state->result_obj = return_desc;
-
       cleanup:
 
        /* Delete return object on error */
@@ -332,5 +330,11 @@ acpi_status acpi_ex_opcode_6A_0T_1R(struct acpi_walk_state * walk_state)
                acpi_ut_remove_reference(return_desc);
        }
 
+       /* Save return object on success */
+
+       else {
+               walk_state->result_obj = return_desc;
+       }
+
        return_ACPI_STATUS(status);
 }