Commit cb6e73aa authored by ye xingchen's avatar ye xingchen Committed by Damien Le Moal
Browse files

ata: libata-eh: Remove the unneeded result variable



Return the value ata_port_abort() directly instead of storing it in
another redundant variable.

Reported-by: default avatarZeal Robot <zealci@zte.com.cn>
Signed-off-by: default avatarye xingchen <ye.xingchen@zte.com.cn>
Signed-off-by: default avatarDamien Le Moal <damien.lemoal@opensource.wdc.com>
parent ecf8322f
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1086,14 +1086,11 @@ static void __ata_port_freeze(struct ata_port *ap)
 */
int ata_port_freeze(struct ata_port *ap)
{
	int nr_aborted;

	WARN_ON(!ap->ops->error_handler);

	__ata_port_freeze(ap);
	nr_aborted = ata_port_abort(ap);

	return nr_aborted;
	return ata_port_abort(ap);
}
EXPORT_SYMBOL_GPL(ata_port_freeze);