diff options
author | Hannes Reinecke <hare@suse.de> | 2021-12-21 08:21:17 +0100 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-05 19:33:03 +0900 |
commit | 21f0e60a925ba76ad2ff0c2cd9fbead1fd2cbca0 (patch) | |
tree | 43d499562b7af456cf65d6183b4e09b932d8ae0e /drivers | |
parent | 3697aaafc368b66e5d76b749d2b0275a03ce6af1 (diff) | |
download | linux-stable-21f0e60a925ba76ad2ff0c2cd9fbead1fd2cbca0.tar.gz linux-stable-21f0e60a925ba76ad2ff0c2cd9fbead1fd2cbca0.tar.bz2 linux-stable-21f0e60a925ba76ad2ff0c2cd9fbead1fd2cbca0.zip |
ata: pata_marvell: convert printk() calls
Convert the printk() call to structured logging and
drop the pointless PCI bar debug messages.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ata/pata_marvell.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/ata/pata_marvell.c b/drivers/ata/pata_marvell.c index 361597d14c56..0c5a51970fbf 100644 --- a/drivers/ata/pata_marvell.c +++ b/drivers/ata/pata_marvell.c @@ -32,7 +32,6 @@ static int marvell_pata_active(struct pci_dev *pdev) { - int i; u32 devices; void __iomem *barp; @@ -44,11 +43,6 @@ static int marvell_pata_active(struct pci_dev *pdev) if (barp == NULL) return -ENOMEM; - printk("BAR5:"); - for(i = 0; i <= 0x0F; i++) - printk("%02X:%02X ", i, ioread8(barp + i)); - printk("\n"); - devices = ioread32(barp + 0x0C); pci_iounmap(pdev, barp); @@ -149,7 +143,8 @@ static int marvell_init_one (struct pci_dev *pdev, const struct pci_device_id *i #if IS_ENABLED(CONFIG_SATA_AHCI) if (!marvell_pata_active(pdev)) { - printk(KERN_INFO DRV_NAME ": PATA port not active, deferring to AHCI driver.\n"); + dev_info(&pdev->dev, + "PATA port not active, deferring to AHCI driver.\n"); return -ENODEV; } #endif |