Message ID | 20211208163255.114660-25-hare@suse.de |
---|---|
State | New |
Headers | show |
Series | libata: rework logging, take II | expand |
On 2021/12/09 1:32, Hannes Reinecke wrote: > There is only so much information to be glanced when the interrupt > routine in called and exited, so remove these DPRINTK() calls. s/in/is > > Signed-off-by: Hannes Reinecke <hare@suse.de> > --- > drivers/ata/pata_octeon_cf.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/drivers/ata/pata_octeon_cf.c b/drivers/ata/pata_octeon_cf.c > index f86dabcecf9d..7b80bbd9b1ed 100644 > --- a/drivers/ata/pata_octeon_cf.c > +++ b/drivers/ata/pata_octeon_cf.c > @@ -668,7 +668,6 @@ static irqreturn_t octeon_cf_interrupt(int irq, void *dev_instance) > > spin_lock_irqsave(&host->lock, flags); > > - DPRINTK("ENTER\n"); > for (i = 0; i < host->n_ports; i++) { > u8 status; > struct ata_port *ap; > @@ -722,7 +721,6 @@ static irqreturn_t octeon_cf_interrupt(int irq, void *dev_instance) > } > } > spin_unlock_irqrestore(&host->lock, flags); > - DPRINTK("EXIT\n"); > return IRQ_RETVAL(handled); > } > >
diff --git a/drivers/ata/pata_octeon_cf.c b/drivers/ata/pata_octeon_cf.c index f86dabcecf9d..7b80bbd9b1ed 100644 --- a/drivers/ata/pata_octeon_cf.c +++ b/drivers/ata/pata_octeon_cf.c @@ -668,7 +668,6 @@ static irqreturn_t octeon_cf_interrupt(int irq, void *dev_instance) spin_lock_irqsave(&host->lock, flags); - DPRINTK("ENTER\n"); for (i = 0; i < host->n_ports; i++) { u8 status; struct ata_port *ap; @@ -722,7 +721,6 @@ static irqreturn_t octeon_cf_interrupt(int irq, void *dev_instance) } } spin_unlock_irqrestore(&host->lock, flags); - DPRINTK("EXIT\n"); return IRQ_RETVAL(handled); }
There is only so much information to be glanced when the interrupt routine in called and exited, so remove these DPRINTK() calls. Signed-off-by: Hannes Reinecke <hare@suse.de> --- drivers/ata/pata_octeon_cf.c | 2 -- 1 file changed, 2 deletions(-)