]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ata: libata: Add DIPM and HIPM to ata_dev_print_features() early return
authorNiklas Cassel <cassel@kernel.org>
Mon, 12 Jan 2026 12:20:50 +0000 (13:20 +0100)
committerDamien Le Moal <dlemoal@kernel.org>
Tue, 13 Jan 2026 13:00:02 +0000 (22:00 +0900)
ata_dev_print_features() is supposed to return early and not print anything
if there are no features supported.

However, commit b1f5af54f1f5 ("ata: libata-core: Advertize device support
for DIPM and HIPM features") added additional features to
ata_dev_print_features() without updating the early return conditional.

Add the missing features to the early return conditional.

Fixes: b1f5af54f1f5 ("ata: libata-core: Advertize device support for DIPM and HIPM features")
Signed-off-by: Niklas Cassel <cassel@kernel.org>
Tested-by: Wolf <wolf@yoxt.cc>
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
drivers/ata/libata-core.c

index 9301c262eabb0b9a97719c65310f7f6991471737..2e7df131fdde5df0de31f0fc2c1cb4fe539725a7 100644 (file)
@@ -2872,7 +2872,8 @@ static void ata_dev_config_lpm(struct ata_device *dev)
 
 static void ata_dev_print_features(struct ata_device *dev)
 {
-       if (!(dev->flags & ATA_DFLAG_FEATURES_MASK) && !dev->cpr_log)
+       if (!(dev->flags & ATA_DFLAG_FEATURES_MASK) && !dev->cpr_log &&
+           !ata_id_has_hipm(dev->id) && !ata_id_has_dipm(dev->id))
                return;
 
        ata_dev_info(dev,