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

Commit b14dabcd authored by Tejun Heo's avatar Tejun Heo Committed by Jeff Garzik
Browse files

sata_qstor: use hardreset instead of softreset



During conversion to new EH, sata_qstor was accidentaly changed to use
softreset, which is buggy on this chip, instead of hardreset.  This
patch updates sata_qstor such that it uses hardreset again.

This fixes bugzilla bug 9631.

Signed-off-by: default avatarTejun Heo <htejun@gmail.com>
Cc: Mark Lord <mlord@pobox.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent fd0b45df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -270,7 +270,7 @@ static int qs_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val)
static void qs_error_handler(struct ata_port *ap)
{
	qs_enter_reg_mode(ap);
	ata_do_eh(ap, qs_prereset, ata_std_softreset, NULL,
	ata_do_eh(ap, qs_prereset, NULL, sata_std_hardreset,
		  ata_std_postreset);
}