Message ID | 20200204165547.115220-32-hare@suse.de |
---|---|
State | Not Applicable |
Delegated to: | David Miller |
Headers | show |
Series | ata: kill ATA_DEBUG | expand |
On 2/4/20 5:55 PM, Hannes Reinecke wrote: > From: Hannes Reinecke <hare@suse.com> > > Move the remaining DPRINTK statement in the interrupt handler to > VPRINTK. It'll be converted later with the remaining VPRINTK > calls. > > Signed-off-by: Hannes Reinecke <hare@suse.de> Reviewed-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Best regards, -- Bartlomiej Zolnierkiewicz Samsung R&D Institute Poland Samsung Electronics > --- > drivers/ata/pata_octeon_cf.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/ata/pata_octeon_cf.c b/drivers/ata/pata_octeon_cf.c > index 9527216e59b9..f262120f4615 100644 > --- a/drivers/ata/pata_octeon_cf.c > +++ b/drivers/ata/pata_octeon_cf.c > @@ -671,7 +671,7 @@ static irqreturn_t octeon_cf_interrupt(int irq, void *dev_instance) > > spin_lock_irqsave(&host->lock, flags); > > - DPRINTK("ENTER\n"); > + VPRINTK("ENTER\n"); > for (i = 0; i < host->n_ports; i++) { > u8 status; > struct ata_port *ap; > @@ -725,7 +725,7 @@ static irqreturn_t octeon_cf_interrupt(int irq, void *dev_instance) > } > } > spin_unlock_irqrestore(&host->lock, flags); > - DPRINTK("EXIT\n"); > + VPRINTK("EXIT\n"); > return IRQ_RETVAL(handled); > } >
diff --git a/drivers/ata/pata_octeon_cf.c b/drivers/ata/pata_octeon_cf.c index 9527216e59b9..f262120f4615 100644 --- a/drivers/ata/pata_octeon_cf.c +++ b/drivers/ata/pata_octeon_cf.c @@ -671,7 +671,7 @@ static irqreturn_t octeon_cf_interrupt(int irq, void *dev_instance) spin_lock_irqsave(&host->lock, flags); - DPRINTK("ENTER\n"); + VPRINTK("ENTER\n"); for (i = 0; i < host->n_ports; i++) { u8 status; struct ata_port *ap; @@ -725,7 +725,7 @@ static irqreturn_t octeon_cf_interrupt(int irq, void *dev_instance) } } spin_unlock_irqrestore(&host->lock, flags); - DPRINTK("EXIT\n"); + VPRINTK("EXIT\n"); return IRQ_RETVAL(handled); }