diff options
author | Aaron Lu <aaron.lu@intel.com> | 2014-03-14 13:46:08 +0800 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-03-14 11:23:46 -0400 |
commit | 20e64fa42965a6ec6f0ae4c5d4fda0ccf6c94ff6 (patch) | |
tree | 4a00a0012c7482b494841b03e29fbfbd2a4025ad /drivers/ata/Kconfig | |
parent | 840aa78782f02d5d442fae9af425118ed0ce8cba (diff) | |
download | linux-20e64fa42965a6ec6f0ae4c5d4fda0ccf6c94ff6.tar.bz2 |
libata: zpodd: should depend on PM_RUNTIME
ZPODD is built on top of runtime PM functionality, it doesn't make sense
to have it in a kernel that doesn't have CONFIG_PM_RUNTIME set.
Signed-off-by: Aaron Lu <aaron.lu@intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/Kconfig')
-rw-r--r-- | drivers/ata/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index e4ac81989a6c..0bec5ac14103 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -60,7 +60,7 @@ config ATA_ACPI config SATA_ZPODD bool "SATA Zero Power Optical Disc Drive (ZPODD) support" - depends on ATA_ACPI + depends on ATA_ACPI && PM_RUNTIME default n help This option adds support for SATA Zero Power Optical Disc |