Commit 692785e7 authored by Alan Cox's avatar Alan Cox Committed by Jeff Garzik

[PATCH] libata - ATA is both ATA and CFA

I think this is still needed with the new probe code (which btw seems to
be missing docs in upstream ?).
Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent e35a9e01
...@@ -1140,7 +1140,7 @@ static int ata_dev_read_id(struct ata_port *ap, struct ata_device *dev, ...@@ -1140,7 +1140,7 @@ static int ata_dev_read_id(struct ata_port *ap, struct ata_device *dev,
swap_buf_le16(id, ATA_ID_WORDS); swap_buf_le16(id, ATA_ID_WORDS);
/* sanity check */ /* sanity check */
if ((class == ATA_DEV_ATA) != ata_id_is_ata(id)) { if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
rc = -EINVAL; rc = -EINVAL;
reason = "device reports illegal type"; reason = "device reports illegal type";
goto err_out; goto err_out;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment