]> rtime.felk.cvut.cz Git - linux-imx.git/commit
[SCSI] sd: update sd to use the new pm callbacks
authorAaron Lu <aaron.lu@intel.com>
Fri, 9 Nov 2012 07:27:55 +0000 (15:27 +0800)
committerJames Bottomley <JBottomley@Parallels.com>
Fri, 30 Nov 2012 09:28:34 +0000 (09:28 +0000)
commit691e3d3175daff73d9b1771bf79ab032fdcec5a5
treef1b66686e4fe57f2494787de0378ad2ca5be4502
parent80d2fd48cca2a0de806c3130551744a04ad5b80b
[SCSI] sd: update sd to use the new pm callbacks

Update sd driver to use the callbacks defined in dev_pm_ops.

sd_freeze is NULL, the bus level callback has taken care of quiescing
the device so there should be nothing needs to be done here.
Consequently, sd_thaw is not needed here either.

suspend, poweroff and runtime suspend share the same routine sd_suspend,
which will sync flush and then stop the drive, this is the same as before.

resume, restore and runtime resume share the same routine sd_resume,
which will start the drive by putting it into active power state, this
is also the same as before.

Signed-off-by: Aaron Lu <aaron.lu@intel.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/sd.c