diff options
author | Li Shaohua <shaohua.li@intel.com> | 2006-12-07 07:57:05 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-12-15 23:38:35 -0500 |
commit | db3e1cc3257758d8a694d0a6ab29f109fb019853 (patch) | |
tree | 04acebdac81e32af4ce8eea2c4e04efdeead26f3 /drivers/acpi/scan.c | |
parent | 54a07001b9efb6a3bb9a9d8ac9ddb226e29b5406 (diff) |
ACPI: Convert ACPI PCI .bind/.unbind to use PCI bridge driver
acpi_device had a .bind/.unbind methods, but Linux driver model does not.
Cut ACPI PCI code over to use the Linux driver model methods.
Convert bind/unbind to use a new pci bridge driver.
The driver will add/remove _PRT, so we can eventually
remove .bind/.unbind methods.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/scan.c')
-rw-r--r-- | drivers/acpi/scan.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 06b86faf037f..c566c74e8a31 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c | |||
@@ -866,11 +866,6 @@ static int acpi_bus_remove(struct acpi_device *dev, int rmdevice) | |||
866 | if (!rmdevice) | 866 | if (!rmdevice) |
867 | return 0; | 867 | return 0; |
868 | 868 | ||
869 | if (dev->flags.bus_address) { | ||
870 | if ((dev->parent) && (dev->parent->ops.unbind)) | ||
871 | dev->parent->ops.unbind(dev); | ||
872 | } | ||
873 | |||
874 | acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT); | 869 | acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT); |
875 | 870 | ||
876 | return 0; | 871 | return 0; |
@@ -987,18 +982,6 @@ acpi_add_single_object(struct acpi_device **child, | |||
987 | 982 | ||
988 | acpi_device_register(device, parent); | 983 | acpi_device_register(device, parent); |
989 | 984 | ||
990 | /* | ||
991 | * Bind _ADR-Based Devices | ||
992 | * ----------------------- | ||
993 | * If there's a a bus address (_ADR) then we utilize the parent's | ||
994 | * 'bind' function (if exists) to bind the ACPI- and natively- | ||
995 | * enumerated device representations. | ||
996 | */ | ||
997 | if (device->flags.bus_address) { | ||
998 | if (device->parent && device->parent->ops.bind) | ||
999 | device->parent->ops.bind(device); | ||
1000 | } | ||
1001 | |||
1002 | end: | 985 | end: |
1003 | if (!result) | 986 | if (!result) |
1004 | *child = device; | 987 | *child = device; |