diff options
author | Aaron Lu <aaron.lu@intel.com> | 2013-01-15 04:20:58 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2013-01-21 15:40:35 -0500 |
commit | afe759511808cd5bb508b598007cf0c7b0ca8e08 (patch) | |
tree | 26073c5a74b5fe2183aa457da6d9b5cc3d9912bb /drivers/ata/libata-scsi.c | |
parent | 1757d902b029a29dfcef63609964385cf8865b5a (diff) |
libata: identify and init ZPODD devices
The ODD can be enabled for ZPODD if the following three conditions are
satisfied:
1 The ODD supports device attention;
2 The platform can runtime power off the ODD through ACPI;
3 The ODD is either slot type or drawer type.
For such ODDs, zpodd_init is called and a new structure is allocated for
it to store ZPODD related stuffs.
And the zpodd_dev_enabled function is used to test if ZPODD is currently
enabled for this ODD.
A new config CONFIG_SATA_ZPODD is added to selectively build ZPODD code.
Signed-off-by: Aaron Lu <aaron.lu@intel.com>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/libata-scsi.c')
-rw-r--r-- | drivers/ata/libata-scsi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index 7c337e754dab..1ff018525e3b 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c | |||
@@ -3755,6 +3755,8 @@ static void ata_scsi_remove_dev(struct ata_device *dev) | |||
3755 | mutex_lock(&ap->scsi_host->scan_mutex); | 3755 | mutex_lock(&ap->scsi_host->scan_mutex); |
3756 | spin_lock_irqsave(ap->lock, flags); | 3756 | spin_lock_irqsave(ap->lock, flags); |
3757 | 3757 | ||
3758 | if (zpodd_dev_enabled(dev)) | ||
3759 | zpodd_exit(dev); | ||
3758 | ata_acpi_unbind(dev); | 3760 | ata_acpi_unbind(dev); |
3759 | 3761 | ||
3760 | /* clearing dev->sdev is protected by host lock */ | 3762 | /* clearing dev->sdev is protected by host lock */ |