aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRickard Strandqvist <rickard_strandqvist@spectrumdigital.se>2015-04-12 23:49:24 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-04-14 08:51:52 -0400
commit9bd4ce36dcbc8e3b2218e84cdfd1dff6d5671f3c (patch)
treeddc4dd24ccb34bb33b7db9e24511159d00fba155
parent1797d379f20901ee51711d737b65cc77e22c13e2 (diff)
ACPICA: Utilities: Remove unused acpi_ut_create_pkg_state_and_push().
ACPICA commit 2a9ebd974aee41391f4b0edcd4f0cc5ee23ec2f8 Remove the function acpi_ut_create_pkg_state_and_push() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Link: https://github.com/acpica/acpica/commit/2a9ebd97 Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/acpi/acpica/acutils.h6
-rw-r--r--drivers/acpi/acpica/utstate.c34
2 files changed, 0 insertions, 40 deletions
diff --git a/drivers/acpi/acpica/acutils.h b/drivers/acpi/acpica/acutils.h
index 3ae0447d34b2..04f4c319b2c5 100644
--- a/drivers/acpi/acpica/acutils.h
+++ b/drivers/acpi/acpica/acutils.h
@@ -539,12 +539,6 @@ acpi_ut_create_update_state_and_push(union acpi_operand_object *object,
539 u16 action, 539 u16 action,
540 union acpi_generic_state **state_list); 540 union acpi_generic_state **state_list);
541 541
542acpi_status
543acpi_ut_create_pkg_state_and_push(void *internal_object,
544 void *external_object,
545 u16 index,
546 union acpi_generic_state **state_list);
547
548union acpi_generic_state *acpi_ut_create_control_state(void); 542union acpi_generic_state *acpi_ut_create_control_state(void);
549 543
550void acpi_ut_delete_generic_state(union acpi_generic_state *state); 544void acpi_ut_delete_generic_state(union acpi_generic_state *state);
diff --git a/drivers/acpi/acpica/utstate.c b/drivers/acpi/acpica/utstate.c
index 8274cc16edc3..f201171c5dda 100644
--- a/drivers/acpi/acpica/utstate.c
+++ b/drivers/acpi/acpica/utstate.c
@@ -49,39 +49,6 @@ ACPI_MODULE_NAME("utstate")
49 49
50/******************************************************************************* 50/*******************************************************************************
51 * 51 *
52 * FUNCTION: acpi_ut_create_pkg_state_and_push
53 *
54 * PARAMETERS: object - Object to be added to the new state
55 * action - Increment/Decrement
56 * state_list - List the state will be added to
57 *
58 * RETURN: Status
59 *
60 * DESCRIPTION: Create a new state and push it
61 *
62 ******************************************************************************/
63acpi_status
64acpi_ut_create_pkg_state_and_push(void *internal_object,
65 void *external_object,
66 u16 index,
67 union acpi_generic_state **state_list)
68{
69 union acpi_generic_state *state;
70
71 ACPI_FUNCTION_ENTRY();
72
73 state =
74 acpi_ut_create_pkg_state(internal_object, external_object, index);
75 if (!state) {
76 return (AE_NO_MEMORY);
77 }
78
79 acpi_ut_push_generic_state(state_list, state);
80 return (AE_OK);
81}
82
83/*******************************************************************************
84 *
85 * FUNCTION: acpi_ut_push_generic_state 52 * FUNCTION: acpi_ut_push_generic_state
86 * 53 *
87 * PARAMETERS: list_head - Head of the state stack 54 * PARAMETERS: list_head - Head of the state stack
@@ -92,7 +59,6 @@ acpi_ut_create_pkg_state_and_push(void *internal_object,
92 * DESCRIPTION: Push a state object onto a state stack 59 * DESCRIPTION: Push a state object onto a state stack
93 * 60 *
94 ******************************************************************************/ 61 ******************************************************************************/
95
96void 62void
97acpi_ut_push_generic_state(union acpi_generic_state **list_head, 63acpi_ut_push_generic_state(union acpi_generic_state **list_head,
98 union acpi_generic_state *state) 64 union acpi_generic_state *state)