diff options
author | Tejun Heo <htejun@gmail.com> | 2007-12-06 15:02:48 +0900 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-12-07 15:27:53 -0500 |
commit | 994056d7aa884c742f58e2f2c17305bb01bf14e7 (patch) | |
tree | 41db117f56760ffb89dba6ae505799cf6ba27430 /drivers/ata/ahci.c | |
parent | 2c5ea0f2d8c7d4883dd0d8ec3c7e3f3640b4f814 (diff) |
ahci: fix engine reset failed message
There isn't much point in reporting -EOPNOTSUPP as failure. Also the
message was missing newline.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 4688dbf2d11..588ab2fd59e 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -1271,9 +1271,9 @@ static int ahci_do_softreset(struct ata_link *link, unsigned int *class, /* prepare for SRST (AHCI-1.1 10.4.1) */ rc = ahci_kick_engine(ap, 1); - if (rc) + if (rc && rc != -EOPNOTSUPP) ata_link_printk(link, KERN_WARNING, - "failed to reset engine (errno=%d)", rc); + "failed to reset engine (errno=%d)\n", rc); ata_tf_init(link->device, &tf); |