summaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
authorGabriele Mazzotta2015-01-08 19:41:34 +0100
committerTejun Heo2015-01-09 23:04:12 +0100
commit95bbbe9a6663635b6cdef20c01c0ea32ec6987e4 (patch)
treea15847214ff915c701e789baaae74ae5f0b03a05 /drivers/ata
parentlibata: Whitelist SSDs that are known to properly return zeroes after TRIM (diff)
downloadkernel-qcow2-linux-95bbbe9a6663635b6cdef20c01c0ea32ec6987e4.tar.gz
kernel-qcow2-linux-95bbbe9a6663635b6cdef20c01c0ea32ec6987e4.tar.xz
kernel-qcow2-linux-95bbbe9a6663635b6cdef20c01c0ea32ec6987e4.zip
ahci: Use dev_info() to inform about the lack of Device Sleep support
According to the Serial ATA AHCI specification, Device Sleep is an optional feature and as such no errors should be printed if it's missing. Keep informing users, but use dev_info() instead of dev_err(). Signed-off-by: Gabriele Mazzotta <gabriele.mzt@gmail.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/libahci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libahci.c b/drivers/ata/libahci.c
index 97683e45ab04..61a9c07e0dff 100644
--- a/drivers/ata/libahci.c
+++ b/drivers/ata/libahci.c
@@ -2003,7 +2003,7 @@ static void ahci_set_aggressive_devslp(struct ata_port *ap, bool sleep)
devslp = readl(port_mmio + PORT_DEVSLP);
if (!(devslp & PORT_DEVSLP_DSP)) {
- dev_err(ap->host->dev, "port does not support device sleep\n");
+ dev_info(ap->host->dev, "port does not support device sleep\n");
return;
}