pcmcia/i82092: Refactored dprintk macro for dev_dbg().
As suggested in https://kernelnewbies.org/KernelJanitors/Todo this patch replaces the outdated macro of DPRINTK for dev_dbg() To: Dominik Brodowski <linux@dominikbrodowski.net> To: Thomas Gleixner <tglx@linutronix.de> To: Adam Zerella <adam.zerella@gmail.com> To: linux-kernel@vger.kernel.org Signed-off-by: Adam Zerella <adam.zerella@gmail.com> Link: https://lore.kernel.org/r/20190825053513.13990-1-adam.zerella@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ef9ae0c58b
commit
836e9494f4
|
@ -117,9 +117,9 @@ static int i82092aa_pci_probe(struct pci_dev *dev, const struct pci_device_id *i
|
|||
|
||||
if (card_present(i)) {
|
||||
sockets[i].card_state = 3;
|
||||
dprintk(KERN_DEBUG "i82092aa: slot %i is occupied\n",i);
|
||||
dev_dbg(&dev->dev, "i82092aa: slot %i is occupied\n", i);
|
||||
} else {
|
||||
dprintk(KERN_DEBUG "i82092aa: slot %i is vacant\n",i);
|
||||
dev_dbg(&dev->dev, "i82092aa: slot %i is vacant\n", i);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -128,7 +128,7 @@ static int i82092aa_pci_probe(struct pci_dev *dev, const struct pci_device_id *i
|
|||
pci_write_config_byte(dev, 0x50, configbyte); /* PCI Interrupt Routing Register */
|
||||
|
||||
/* Register the interrupt handler */
|
||||
dprintk(KERN_DEBUG "Requesting interrupt %i \n",dev->irq);
|
||||
dev_dbg(&dev->dev, "Requesting interrupt %i\n", dev->irq);
|
||||
if ((ret = request_irq(dev->irq, i82092aa_interrupt, IRQF_SHARED, "i82092aa", i82092aa_interrupt))) {
|
||||
printk(KERN_ERR "i82092aa: Failed to register IRQ %d, aborting\n", dev->irq);
|
||||
goto err_out_free_res;
|
||||
|
|
Loading…
Reference in New Issue