projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
25993e4
)
mfd: Move pcf50633 messages to appropriate log levels
author
Arnaud Patard
<arnaud.patard@rtp-net.org>
Tue, 13 Oct 2009 22:12:32 +0000
(
02:12
+0400)
committer
Samuel Ortiz
<sameo@linux.intel.com>
Sun, 13 Dec 2009 18:21:15 +0000
(19:21 +0100)
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>
drivers/mfd/pcf50633-core.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mfd/pcf50633-core.c
b/drivers/mfd/pcf50633-core.c
index a844445e3872eee75d5ed63a4a2290b938202678..48776d3018ed67e63f32fa05fc7a90df1b72332b 100644
(file)
--- a/
drivers/mfd/pcf50633-core.c
+++ b/
drivers/mfd/pcf50633-core.c
@@
-290,7
+290,7
@@
out:
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);
}
@@
-298,7
+298,7
@@
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);
}