diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-21 18:50:35 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-04-25 00:45:52 -0400 |
commit | 66a9099e02e3fca5198ab52b4bb7088f03dee42e (patch) | |
tree | 24594ea4ca870a1f6e961a1cce27c0fd967009f2 /drivers | |
parent | a0b9f4bc1ec2ea25e47e7958e544fef0d122e012 (diff) |
libata-acpi.c: remove unneeded #if's
These #if's are unneeded since they:
- did anyway not handle the CONFIG_ACPI_DOCK_MODULE case correctly and
- this is already handled in include/acpi/acpi_drivers.h and
- it's now correctly handled in kconfig.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ata/libata-acpi.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/ata/libata-acpi.c b/drivers/ata/libata-acpi.c index 8c1cfc645c85..70b77e0899a8 100644 --- a/drivers/ata/libata-acpi.c +++ b/drivers/ata/libata-acpi.c | |||
@@ -227,11 +227,9 @@ void ata_acpi_associate(struct ata_host *host) | |||
227 | acpi_install_notify_handler(ap->acpi_handle, | 227 | acpi_install_notify_handler(ap->acpi_handle, |
228 | ACPI_SYSTEM_NOTIFY, | 228 | ACPI_SYSTEM_NOTIFY, |
229 | ata_acpi_ap_notify, ap); | 229 | ata_acpi_ap_notify, ap); |
230 | #if defined(CONFIG_ACPI_DOCK) || defined(CONFIG_ACPI_DOCK_MODULE) | ||
231 | /* we might be on a docking station */ | 230 | /* we might be on a docking station */ |
232 | register_hotplug_dock_device(ap->acpi_handle, | 231 | register_hotplug_dock_device(ap->acpi_handle, |
233 | ata_acpi_ap_notify, ap); | 232 | ata_acpi_ap_notify, ap); |
234 | #endif | ||
235 | } | 233 | } |
236 | 234 | ||
237 | for (j = 0; j < ata_link_max_devices(&ap->link); j++) { | 235 | for (j = 0; j < ata_link_max_devices(&ap->link); j++) { |
@@ -241,11 +239,9 @@ void ata_acpi_associate(struct ata_host *host) | |||
241 | acpi_install_notify_handler(dev->acpi_handle, | 239 | acpi_install_notify_handler(dev->acpi_handle, |
242 | ACPI_SYSTEM_NOTIFY, | 240 | ACPI_SYSTEM_NOTIFY, |
243 | ata_acpi_dev_notify, dev); | 241 | ata_acpi_dev_notify, dev); |
244 | #if defined(CONFIG_ACPI_DOCK) || defined(CONFIG_ACPI_DOCK_MODULE) | ||
245 | /* we might be on a docking station */ | 242 | /* we might be on a docking station */ |
246 | register_hotplug_dock_device(dev->acpi_handle, | 243 | register_hotplug_dock_device(dev->acpi_handle, |
247 | ata_acpi_dev_notify, dev); | 244 | ata_acpi_dev_notify, dev); |
248 | #endif | ||
249 | } | 245 | } |
250 | } | 246 | } |
251 | } | 247 | } |