diff options
author | Niklas Cassel <niklas.cassel@wdc.com> | 2022-10-07 15:23:38 +0200 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-10-18 06:53:27 +0200 |
commit | 4cb7c6f1ef9642cd2c8580b495fde47ffbaddef7 (patch) | |
tree | 86895369e211cbf8def44a05346e994adfe1d43d /drivers/ata/sata_sx4.c | |
parent | ata: add ata_port_is_frozen() helper (diff) | |
download | linux-4cb7c6f1ef9642cd2c8580b495fde47ffbaddef7.tar.xz linux-4cb7c6f1ef9642cd2c8580b495fde47ffbaddef7.zip |
ata: make use of ata_port_is_frozen() helper
Clean up the code by making use of the newly introduced
ata_port_is_frozen() helper function.
Signed-off-by: Niklas Cassel <niklas.cassel@wdc.com>
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Diffstat (limited to 'drivers/ata/sata_sx4.c')
-rw-r--r-- | drivers/ata/sata_sx4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/sata_sx4.c b/drivers/ata/sata_sx4.c index 6ceec59cb291..ab70cbc78f96 100644 --- a/drivers/ata/sata_sx4.c +++ b/drivers/ata/sata_sx4.c @@ -855,7 +855,7 @@ static int pdc_softreset(struct ata_link *link, unsigned int *class, static void pdc_error_handler(struct ata_port *ap) { - if (!(ap->pflags & ATA_PFLAG_FROZEN)) + if (!ata_port_is_frozen(ap)) pdc_reset_port(ap); ata_sff_error_handler(ap); |