diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-11-28 17:58:18 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-12-06 19:05:49 -0500 |
commit | 11dcc75dba5bf8b69c4612de10e366c4e04cb123 (patch) | |
tree | c6f510966339515a5758d07c60f632740b46a5d1 | |
parent | 5ce79d201358d36f13d13b01d8614bd8e646036c (diff) |
ACPI / bind: Redefine acpi_get_child()
Since acpi_get_child() is the only user of acpi_find_child() now,
drop the static inline definition of the former and redefine the
latter as new acpi_get_child().
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Aaron Lu <aaron.lu@intel.com>
Tested-by: Aaron Lu <aaron.lu@intel.com> # for ATA binding
-rw-r--r-- | drivers/acpi/glue.c | 6 | ||||
-rw-r--r-- | include/acpi/acpi_bus.h | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/drivers/acpi/glue.c b/drivers/acpi/glue.c index 9d200d5029ca..12b2acbaa116 100644 --- a/drivers/acpi/glue.c +++ b/drivers/acpi/glue.c | |||
@@ -150,17 +150,17 @@ struct acpi_device *acpi_find_child_device(struct acpi_device *parent, | |||
150 | return ret; | 150 | return ret; |
151 | } | 151 | } |
152 | 152 | ||
153 | acpi_handle acpi_find_child(acpi_handle handle, u64 addr, bool is_bridge) | 153 | acpi_handle acpi_get_child(acpi_handle handle, u64 addr) |
154 | { | 154 | { |
155 | struct acpi_device *adev; | 155 | struct acpi_device *adev; |
156 | 156 | ||
157 | if (!handle || acpi_bus_get_device(handle, &adev)) | 157 | if (!handle || acpi_bus_get_device(handle, &adev)) |
158 | return NULL; | 158 | return NULL; |
159 | 159 | ||
160 | adev = acpi_find_child_device(adev, addr, is_bridge); | 160 | adev = acpi_find_child_device(adev, addr, false); |
161 | return adev ? adev->handle : NULL; | 161 | return adev ? adev->handle : NULL; |
162 | } | 162 | } |
163 | EXPORT_SYMBOL_GPL(acpi_find_child); | 163 | EXPORT_SYMBOL_GPL(acpi_get_child); |
164 | 164 | ||
165 | static void acpi_physnode_link_name(char *buf, unsigned int node_id) | 165 | static void acpi_physnode_link_name(char *buf, unsigned int node_id) |
166 | { | 166 | { |
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index 6d82c5c14c0f..a1a48f27933a 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
@@ -434,11 +434,7 @@ struct acpi_pci_root { | |||
434 | 434 | ||
435 | struct acpi_device *acpi_find_child_device(struct acpi_device *parent, | 435 | struct acpi_device *acpi_find_child_device(struct acpi_device *parent, |
436 | u64 address, bool check_children); | 436 | u64 address, bool check_children); |
437 | acpi_handle acpi_find_child(acpi_handle, u64, bool); | 437 | acpi_handle acpi_get_child(acpi_handle handle, u64 addr); |
438 | static inline acpi_handle acpi_get_child(acpi_handle handle, u64 addr) | ||
439 | { | ||
440 | return acpi_find_child(handle, addr, false); | ||
441 | } | ||
442 | void acpi_preset_companion(struct device *dev, acpi_handle parent, u64 addr); | 438 | void acpi_preset_companion(struct device *dev, acpi_handle parent, u64 addr); |
443 | int acpi_is_root_bridge(acpi_handle); | 439 | int acpi_is_root_bridge(acpi_handle); |
444 | struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle); | 440 | struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle); |