diff mbox series

ACPICA: Remove unused 'acpi_ps_get_name'

Message ID 20240929000253.418403-1-linux@treblig.org
State New
Headers show
Series ACPICA: Remove unused 'acpi_ps_get_name' | expand

Commit Message

Dr. David Alan Gilbert Sept. 29, 2024, 12:02 a.m. UTC
From: "Dr. David Alan Gilbert" <linux@treblig.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@treblig.org>
---
 drivers/acpi/acpica/acparser.h |  2 --
 drivers/acpi/acpica/psutils.c  | 17 -----------------
 2 files changed, 19 deletions(-)
diff mbox series

Patch

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
  */