Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b23ff244 authored by Tejun Heo's avatar Tejun Heo Committed by Jeff Garzik
Browse files

libata: add missing PM callbacks



Some LLDs were missing scsi device PM callbacks while having host/port
suspend support.  Add missing ones.

Signed-off-by: default avatarTejun Heo <htejun@gmail.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent cc7c15ec
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -137,6 +137,10 @@ static struct scsi_host_template jmicron_sht = {
	.slave_destroy		= ata_scsi_slave_destroy,
	/* Use standard CHS mapping rules */
	.bios_param		= ata_std_bios_param,
#ifdef CONFIG_PM
	.suspend		= ata_scsi_device_suspend,
	.resume			= ata_scsi_device_resume,
#endif
};

static const struct ata_port_operations jmicron_ops = {
+4 −0
Original line number Diff line number Diff line
@@ -280,6 +280,10 @@ static struct scsi_host_template mpc52xx_ata_sht = {
	.dma_boundary		= ATA_DMA_BOUNDARY,
	.slave_configure	= ata_scsi_slave_config,
	.bios_param		= ata_std_bios_param,
#ifdef CONFIG_PM
	.suspend		= ata_scsi_device_suspend,
	.resume			= ata_scsi_device_resume,
#endif
};

static struct ata_port_operations mpc52xx_ata_port_ops = {
+4 −0
Original line number Diff line number Diff line
@@ -236,6 +236,10 @@ static struct scsi_host_template sil680_sht = {
	.slave_configure	= ata_scsi_slave_config,
	.slave_destroy		= ata_scsi_slave_destroy,
	.bios_param		= ata_std_bios_param,
#ifdef CONFIG_PM
	.suspend		= ata_scsi_device_suspend,
	.resume			= ata_scsi_device_resume,
#endif
};

static struct ata_port_operations sil680_port_ops = {