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 12:00:45 +0100 |
commit | 6c952a0dc9c3ced98c4c8aa7cd11c25c59157f1f (patch) | |
tree | 3f63a8e56e69d074efea95aefaa9e7a224f8c86c /drivers/ata/sata_inic162x.c | |
parent | ata: libata: whitespace cleanup (diff) | |
download | linux-6c952a0dc9c3ced98c4c8aa7cd11c25c59157f1f.tar.xz linux-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/sata_inic162x.c')
-rw-r--r-- | drivers/ata/sata_inic162x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/sata_inic162x.c b/drivers/ata/sata_inic162x.c index e517bd8822a5..b6239dae524a 100644 --- a/drivers/ata/sata_inic162x.c +++ b/drivers/ata/sata_inic162x.c @@ -657,7 +657,7 @@ static int inic_hardreset(struct ata_link *link, unsigned int *class, } inic_tf_read(ap, &tf); - *class = ata_dev_classify(&tf); + *class = ata_port_classify(ap, &tf); } return 0; |