aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2021-06-16 16:22:50 +0200
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2021-06-17 15:56:03 +0200
commitaff0dbd03d3b750e2331f7cb93e01fe25ed27086 (patch)
treee672cfea04da6ac6f4a64e10af2dfaffb53e0a01 /drivers/acpi
parentACPI: scan: Rearrange acpi_dev_get_first_consumer_dev_cb() (diff)
downloadlinux-dev-aff0dbd03d3b750e2331f7cb93e01fe25ed27086.tar.xz
linux-dev-aff0dbd03d3b750e2331f7cb93e01fe25ed27086.zip
ACPI: scan: Make acpi_walk_dep_device_list()
Because acpi_walk_dep_device_list() is only called by the code in the file in which it is defined, make it static, drop the export of it and drop its header from acpi.h. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/scan.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c
index 524d85dc540c..b7f9b7ac0d04 100644
--- a/drivers/acpi/scan.c
+++ b/drivers/acpi/scan.c
@@ -2139,9 +2139,9 @@ static int acpi_scan_clear_dep(struct acpi_dep_data *dep, void *data)
* negative value is returned by the callback then the loop is broken and that
* value is returned as the final error.
*/
-int acpi_walk_dep_device_list(acpi_handle handle,
- int (*callback)(struct acpi_dep_data *, void *),
- void *data)
+static int acpi_walk_dep_device_list(acpi_handle handle,
+ int (*callback)(struct acpi_dep_data *, void *),
+ void *data)
{
struct acpi_dep_data *dep, *tmp;
int ret = 0;
@@ -2158,7 +2158,6 @@ int acpi_walk_dep_device_list(acpi_handle handle,
return ret > 0 ? 0 : ret;
}
-EXPORT_SYMBOL_GPL(acpi_walk_dep_device_list);
/**
* acpi_dev_clear_dependencies - Inform consumers that the device is now active