diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-03-03 16:35:44 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-03-04 08:23:40 -0500 |
commit | 924144818cf0edc5d9d70d3a44e7cbbf4544796c (patch) | |
tree | c58abdcb5a82d4498a856b4e53607857b35926a6 /drivers/acpi/glue.c | |
parent | 53540098b23c3884b4a0b4f220b9d977bc496af3 (diff) |
ACPI / glue: Drop .find_bridge() callback from struct acpi_bus_type
After PCI and USB have stopped using the .find_bridge() callback in
struct acpi_bus_type, the only remaining user of it is SATA, but SATA
only pretends to be a user, because it points that callback to a stub
always returning -ENODEV.
For this reason, drop the SATA's dummy .find_bridge() callback and
remove .find_bridge(), which is not used any more, from struct
acpi_bus_type entirely.
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Yinghai Lu <yinghai@kernel.org>
Acked-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/acpi/glue.c')
-rw-r--r-- | drivers/acpi/glue.c | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/drivers/acpi/glue.c b/drivers/acpi/glue.c index b94d14721af3..40a84cc6740c 100644 --- a/drivers/acpi/glue.c +++ b/drivers/acpi/glue.c | |||
@@ -78,22 +78,6 @@ static struct acpi_bus_type *acpi_get_bus_type(struct device *dev) | |||
78 | return ret; | 78 | return ret; |
79 | } | 79 | } |
80 | 80 | ||
81 | static int acpi_find_bridge_device(struct device *dev, acpi_handle * handle) | ||
82 | { | ||
83 | struct acpi_bus_type *tmp; | ||
84 | int ret = -ENODEV; | ||
85 | |||
86 | down_read(&bus_type_sem); | ||
87 | list_for_each_entry(tmp, &bus_type_list, list) { | ||
88 | if (tmp->find_bridge && !tmp->find_bridge(dev, handle)) { | ||
89 | ret = 0; | ||
90 | break; | ||
91 | } | ||
92 | } | ||
93 | up_read(&bus_type_sem); | ||
94 | return ret; | ||
95 | } | ||
96 | |||
97 | static acpi_status do_acpi_find_child(acpi_handle handle, u32 lvl_not_used, | 81 | static acpi_status do_acpi_find_child(acpi_handle handle, u32 lvl_not_used, |
98 | void *addr_p, void **ret_p) | 82 | void *addr_p, void **ret_p) |
99 | { | 83 | { |
@@ -262,15 +246,7 @@ static int acpi_platform_notify(struct device *dev) | |||
262 | int ret; | 246 | int ret; |
263 | 247 | ||
264 | ret = acpi_bind_one(dev, NULL); | 248 | ret = acpi_bind_one(dev, NULL); |
265 | if (ret) { | 249 | if (ret && type) { |
266 | if (!type) { | ||
267 | ret = acpi_find_bridge_device(dev, &handle); | ||
268 | if (!ret) | ||
269 | ret = acpi_bind_one(dev, handle); | ||
270 | |||
271 | goto out; | ||
272 | } | ||
273 | |||
274 | ret = type->find_device(dev, &handle); | 250 | ret = type->find_device(dev, &handle); |
275 | if (ret) { | 251 | if (ret) { |
276 | DBG("Unable to get handle for %s\n", dev_name(dev)); | 252 | DBG("Unable to get handle for %s\n", dev_name(dev)); |