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

Commit 152af05c authored by Jeff Garzik's avatar Jeff Garzik
Browse files

Merge branch 'dipm-fix' into upstream-fixes

parents 17bd9a2f f5456b63
Loading
Loading
Loading
Loading
+10 −8
Original line number Diff line number Diff line
@@ -676,10 +676,11 @@ static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
		if (rc)
			return rc;

		/* disable DIPM */
		if (ata_dev_enabled(dev) && (dev->flags & ATA_DFLAG_DIPM))
			err_mask = ata_dev_set_feature(dev,
					SETFEATURES_SATA_DISABLE, SATA_DIPM);
		/*
		 * we don't have to disable DIPM since IPM flags
		 * disallow transitions to SLUMBER, which effectively
		 * disable DIPM if it does not support PARTIAL
		 */
		break;
	case NOT_AVAILABLE:
	case MAX_PERFORMANCE:
@@ -689,10 +690,11 @@ static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
		if (rc)
			return rc;

		/* disable DIPM */
		if (ata_dev_enabled(dev) && (dev->flags & ATA_DFLAG_DIPM))
			err_mask = ata_dev_set_feature(dev,
					SETFEATURES_SATA_DISABLE, SATA_DIPM);
		/*
		 * we don't have to disable DIPM since IPM flags
		 * disallow all transitions which effectively
		 * disable DIPM anyway.
		 */
		break;
	}