Skip to content

Commit

Permalink
mfd: Move pcf50633 messages to appropriate log levels
Browse files Browse the repository at this point in the history
IRQs masking/unmasking should be less verbose.

Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Arnaud Patard authored and Samuel Ortiz committed Dec 13, 2009
1 parent 25993e4 commit b18fdc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/mfd/pcf50633-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -290,15 +290,15 @@ static int __pcf50633_irq_mask_set(struct pcf50633 *pcf, int irq, u8 mask)

int pcf50633_irq_mask(struct pcf50633 *pcf, int irq)
{
dev_info(pcf->dev, "Masking IRQ %d\n", irq);
dev_dbg(pcf->dev, "Masking IRQ %d\n", irq);

return __pcf50633_irq_mask_set(pcf, irq, 1);
}
EXPORT_SYMBOL_GPL(pcf50633_irq_mask);

int pcf50633_irq_unmask(struct pcf50633 *pcf, int irq)
{
dev_info(pcf->dev, "Unmasking IRQ %d\n", irq);
dev_dbg(pcf->dev, "Unmasking IRQ %d\n", irq);

return __pcf50633_irq_mask_set(pcf, irq, 0);
}
Expand Down

0 comments on commit b18fdc4

Please sign in to comment.