Skip to content

Commit b500ee5

Browse files
committed
ata: libata: Fix NCQ Non-Data log not supported print
Currently, both ata_dev_config_ncq_send_recv() - which checks for NCQ Send/Recv Log (Log Address 13h) and ata_dev_config_ncq_non_data() - which checks for NCQ Non-Data Log (Log Address 12h), uses the same print when the log is not supported: "NCQ Send/Recv Log not supported" This seems like a copy paste error, since NCQ Non-Data Log is actually a separate log. Fix the print to reference the correct log. Fixes: 284b3b7 ("libata: NCQ encapsulation for ZAC MANAGEMENT OUT") Reviewed-by: Damien Le Moal <dlemoal@kernel.org> Reviewed-by: Hannes Reinecke <hare@suse.de> Link: https://lore.kernel.org/r/20250317111754.1666084-2-cassel@kernel.org Signed-off-by: Niklas Cassel <cassel@kernel.org>
1 parent 725ad02 commit b500ee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/ata/libata-core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2274,7 +2274,7 @@ static void ata_dev_config_ncq_non_data(struct ata_device *dev)
22742274

22752275
if (!ata_log_supported(dev, ATA_LOG_NCQ_NON_DATA)) {
22762276
ata_dev_warn(dev,
2277-
"NCQ Send/Recv Log not supported\n");
2277+
"NCQ Non-Data Log not supported\n");
22782278
return;
22792279
}
22802280
err_mask = ata_read_log_page(dev, ATA_LOG_NCQ_NON_DATA,

0 commit comments

Comments
 (0)