diff options
author | Lin Ming <ming.m.lin@intel.com> | 2011-12-04 20:20:28 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-01-08 19:14:58 -0500 |
commit | 9ee4f3933930abf5cc34f8e9d69fe0e08c18f602 (patch) | |
tree | 7d3751d52712f71a19d488f9970b6184b4c140c6 /drivers/ata/libata-transport.c | |
parent | 5ef41082912bdfcb33fa53b8dba2ad17dea2ef90 (diff) |
ata: add ata port runtime PM callbacks
Add ata port runtime suspend/resume/idle callbacks.
Set ->eh_noresume to skip the runtime PM calls on scsi host
in the error handler to avoid dead lock.
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/libata-transport.c')
-rw-r--r-- | drivers/ata/libata-transport.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ata/libata-transport.c b/drivers/ata/libata-transport.c index 3ceb3d94be26..9a7f0ea565df 100644 --- a/drivers/ata/libata-transport.c +++ b/drivers/ata/libata-transport.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/libata.h> | 32 | #include <linux/libata.h> |
33 | #include <linux/hdreg.h> | 33 | #include <linux/hdreg.h> |
34 | #include <linux/uaccess.h> | 34 | #include <linux/uaccess.h> |
35 | #include <linux/pm_runtime.h> | ||
35 | 36 | ||
36 | #include "libata.h" | 37 | #include "libata.h" |
37 | #include "libata-transport.h" | 38 | #include "libata-transport.h" |
@@ -290,6 +291,9 @@ int ata_tport_add(struct device *parent, | |||
290 | goto tport_err; | 291 | goto tport_err; |
291 | } | 292 | } |
292 | 293 | ||
294 | pm_runtime_set_active(dev); | ||
295 | pm_runtime_enable(dev); | ||
296 | |||
293 | transport_add_device(dev); | 297 | transport_add_device(dev); |
294 | transport_configure_device(dev); | 298 | transport_configure_device(dev); |
295 | 299 | ||