diff options
author | Hannes Reinecke <hare@suse.de> | 2021-12-21 08:20:26 +0100 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-04 20:00:45 +0900 |
commit | 6c952a0dc9c3ced98c4c8aa7cd11c25c59157f1f (patch) | |
tree | 3f63a8e56e69d074efea95aefaa9e7a224f8c86c /drivers/ata/libata-sff.c | |
parent | bb6a42d7104644bb8d59fac9a93b69d7790ff15e (diff) | |
download | lwn-6c952a0dc9c3ced98c4c8aa7cd11c25c59157f1f.tar.gz lwn-6c952a0dc9c3ced98c4c8aa7cd11c25c59157f1f.zip |
ata: libata: Add ata_port_classify() helper
Add an ata_port_classify() helper to print out the results from
the device classification and remove the debugging statements
from ata_dev_classify().
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Diffstat (limited to 'drivers/ata/libata-sff.c')
-rw-r--r-- | drivers/ata/libata-sff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-sff.c b/drivers/ata/libata-sff.c index 39c026f3948c..a119fabe0919 100644 --- a/drivers/ata/libata-sff.c +++ b/drivers/ata/libata-sff.c @@ -1853,7 +1853,7 @@ unsigned int ata_sff_dev_classify(struct ata_device *dev, int present, return ATA_DEV_NONE; /* determine if device is ATA or ATAPI */ - class = ata_dev_classify(&tf); + class = ata_port_classify(ap, &tf); if (class == ATA_DEV_UNKNOWN) { /* If the device failed diagnostic, it's likely to |