[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20240929000253.418403-1-linux@treblig.org>
Date: Sun, 29 Sep 2024 01:02:53 +0100
From: linux@...blig.org
To: robert.moore@...el.com,
rafael.j.wysocki@...el.com,
lenb@...nel.org
Cc: linux-acpi@...r.kernel.org,
acpica-devel@...ts.linux.dev,
linux-kernel@...r.kernel.org,
"Dr. David Alan Gilbert" <linux@...blig.org>
Subject: [PATCH] ACPICA: Remove unused 'acpi_ps_get_name'
From: "Dr. David Alan Gilbert" <linux@...blig.org>
acpi_ps_get_name is currently unused, remove it.
I can't find any history of it's use since git, but I can
see it was used in 2.5.0, and see a record of a removal
of uses at Fri Aug 30 00:38:52 2002.
Signed-off-by: Dr. David Alan Gilbert <linux@...blig.org>
---
drivers/acpi/acpica/acparser.h | 2 --
drivers/acpi/acpica/psutils.c | 17 -----------------
2 files changed, 19 deletions(-)
diff --git a/drivers/acpi/acpica/acparser.h b/drivers/acpi/acpica/acparser.h
index 6dad786a382c..3a61853591d3 100644
--- a/drivers/acpi/acpica/acparser.h
+++ b/drivers/acpi/acpica/acparser.h
@@ -207,8 +207,6 @@ void acpi_ps_free_op(union acpi_parse_object *op);
u8 acpi_ps_is_leading_char(u32 c);
-u32 acpi_ps_get_name(union acpi_parse_object *op);
-
void acpi_ps_set_name(union acpi_parse_object *op, u32 name);
/*
diff --git a/drivers/acpi/acpica/psutils.c b/drivers/acpi/acpica/psutils.c
index d550c4af4702..3799ae9f6d39 100644
--- a/drivers/acpi/acpica/psutils.c
+++ b/drivers/acpi/acpica/psutils.c
@@ -181,23 +181,6 @@ u8 acpi_ps_is_leading_char(u32 c)
return ((u8) (c == '_' || (c >= 'A' && c <= 'Z')));
}
-/*
- * Get op's name (4-byte name segment) or 0 if unnamed
- */
-u32 acpi_ps_get_name(union acpi_parse_object * op)
-{
-
- /* The "generic" object has no name associated with it */
-
- if (op->common.flags & ACPI_PARSEOP_GENERIC) {
- return (0);
- }
-
- /* Only the "Extended" parse objects have a name */
-
- return (op->named.name);
-}
-
/*
* Set op's name
*/
--
2.46.2
Powered by blists - more mailing lists