On Tue, Jul 08, 2025 at 02:34:14PM +0200, Niklas Cassel wrote:
> s/operations/operations/
I of course meant:
s/operations/operation/
> And then in:
> int ata_eh_reset(struct ata_link *link, int classify, bool use_pmp_ops)
> {
> ...
> if (use_pmp_ops) {
> prereset = ops->prereset;
> softreset = ops->softreset;
> hardreset = ops->hardreset;
> postreset = ops->postreset;
> } else {
> prereset = ops->pmp_prereset;
> softreset = ops->pmp_softreset;
> hardreset = ops->pmp_hardreset;
> postreset = ops->pmp_postreset;
> }
Oops.. these are swapped, but you get the point.
Kind regards,
Niklas