diff options
author | Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | 2017-06-14 17:37:13 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2017-06-15 11:41:37 +0100 |
commit | 91e0bf81258c07aad27a4833368569ce873cd83e (patch) | |
tree | a697d30995fc894777cf7022c1385e1420fc0cf1 /drivers/acpi | |
parent | c6bb8f89fa6df7a8d62bad2f66063b4b7433ea59 (diff) | |
download | blackbird-op-linux-91e0bf81258c07aad27a4833368569ce873cd83e.tar.gz blackbird-op-linux-91e0bf81258c07aad27a4833368569ce873cd83e.zip |
ACPI/IORT: Remove iort_node_match()
Commit 316ca8804ea8 ("ACPI/IORT: Remove linker section for IORT entries
probing") removed the linker section for IORT entries probing.
Since those IORT entries were the only iort_node_match() interface
users, the iort_node_match() became obsolete and can then be removed.
Remove the ACPI IORT iort_node_match() interface from the kernel.
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Hanjun Guo <hanjun.guo@linaro.org>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Cc: Hanjun Guo <hanjun.guo@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/arm64/iort.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/drivers/acpi/arm64/iort.c b/drivers/acpi/arm64/iort.c index c5fecf97ee2f..8c77598dd6aa 100644 --- a/drivers/acpi/arm64/iort.c +++ b/drivers/acpi/arm64/iort.c @@ -234,21 +234,6 @@ static struct acpi_iort_node *iort_scan_node(enum acpi_iort_node_type type, return NULL; } -static acpi_status -iort_match_type_callback(struct acpi_iort_node *node, void *context) -{ - return AE_OK; -} - -bool iort_node_match(u8 type) -{ - struct acpi_iort_node *node; - - node = iort_scan_node(type, iort_match_type_callback, NULL); - - return node != NULL; -} - static acpi_status iort_match_node_callback(struct acpi_iort_node *node, void *context) { |