aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/nsxfeval.c
diff options
context:
space:
mode:
authorLv Zheng <lv.zheng@intel.com>2013-10-28 21:30:02 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2013-10-31 09:35:36 -0400
commit10622bf8ce432e6a53fd3c37163e99e99c9e43ee (patch)
treef59d07002b1629112bc8307e391ac9e1e97d3a71 /drivers/acpi/acpica/nsxfeval.c
parentbb1cab3d52375b5007645ca55d2b55167e5f757b (diff)
ACPICA: Linuxize: Change indentation of C labels.
It is reported by kernel build test systems that all ACPICA source files in the kernel tree have incorrect label indentation. This patch changes default indent option used in the release process to fix this bug. Lv Zheng. Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/nsxfeval.c')
-rw-r--r--drivers/acpi/acpica/nsxfeval.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/acpi/acpica/nsxfeval.c b/drivers/acpi/acpica/nsxfeval.c
index ce2a84575a36..e973e311f856 100644
--- a/drivers/acpi/acpica/nsxfeval.c
+++ b/drivers/acpi/acpica/nsxfeval.c
@@ -442,7 +442,7 @@ acpi_evaluate_object(acpi_handle handle,
442 acpi_ex_exit_interpreter(); 442 acpi_ex_exit_interpreter();
443 } 443 }
444 444
445 cleanup: 445cleanup:
446 446
447 /* Free the input parameter list (if we created one) */ 447 /* Free the input parameter list (if we created one) */
448 448
@@ -618,10 +618,10 @@ acpi_walk_namespace(acpi_object_type type,
618 descending_callback, ascending_callback, 618 descending_callback, ascending_callback,
619 context, return_value); 619 context, return_value);
620 620
621 unlock_and_exit2: 621unlock_and_exit2:
622 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); 622 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
623 623
624 unlock_and_exit: 624unlock_and_exit:
625 (void)acpi_ut_release_read_lock(&acpi_gbl_namespace_rw_lock); 625 (void)acpi_ut_release_read_lock(&acpi_gbl_namespace_rw_lock);
626 return_ACPI_STATUS(status); 626 return_ACPI_STATUS(status);
627} 627}
@@ -865,7 +865,7 @@ acpi_attach_data(acpi_handle obj_handle,
865 865
866 status = acpi_ns_attach_data(node, handler, data); 866 status = acpi_ns_attach_data(node, handler, data);
867 867
868 unlock_and_exit: 868unlock_and_exit:
869 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); 869 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
870 return (status); 870 return (status);
871} 871}
@@ -911,7 +911,7 @@ acpi_detach_data(acpi_handle obj_handle, acpi_object_handler handler)
911 911
912 status = acpi_ns_detach_data(node, handler); 912 status = acpi_ns_detach_data(node, handler);
913 913
914 unlock_and_exit: 914unlock_and_exit:
915 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); 915 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
916 return (status); 916 return (status);
917} 917}
@@ -958,7 +958,7 @@ acpi_get_data(acpi_handle obj_handle, acpi_object_handler handler, void **data)
958 958
959 status = acpi_ns_get_attached_data(node, handler, data); 959 status = acpi_ns_get_attached_data(node, handler, data);
960 960
961 unlock_and_exit: 961unlock_and_exit:
962 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); 962 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
963 return (status); 963 return (status);
964} 964}