mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[PATCH] libata: don't do EDD handling if ->probe_reset is used
EDD is never used with ->probe_reset. Don't handle EDD special case in ata_dev_identify if ->probe_reset is in use. Signed-off-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
0bd3300ac9
commit
61eb066aff
1 changed files with 2 additions and 1 deletions
|
@ -939,7 +939,8 @@ static void ata_dev_identify(struct ata_port *ap, unsigned int device)
|
|||
return;
|
||||
}
|
||||
|
||||
if (ap->flags & (ATA_FLAG_SRST | ATA_FLAG_SATA_RESET))
|
||||
if (ap->ops->probe_reset ||
|
||||
ap->flags & (ATA_FLAG_SRST | ATA_FLAG_SATA_RESET))
|
||||
using_edd = 0;
|
||||
else
|
||||
using_edd = 1;
|
||||
|
|
Loading…
Reference in a new issue