OSDN Git Service
(root)
/
uclinux-h8
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7986ce
)
bcma: use bcma_debug and pr_cont in MIPS driver
author
Rafał Miłecki
<rafal@milecki.pl>
Mon, 16 Oct 2017 12:54:32 +0000
(14:54 +0200)
committer
Kalle Valo
<kvalo@codeaurora.org>
Tue, 17 Oct 2017 14:22:07 +0000
(17:22 +0300)
Using bcma_debug gives a device-specific prefix for messages and pr_cont
is a common helper for continuing a line.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Acked-By: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/bcma/driver_mips.c
patch
|
blob
|
history
diff --git
a/drivers/bcma/driver_mips.c
b/drivers/bcma/driver_mips.c
index
89af807
..
5904ef1
100644
(file)
--- a/
drivers/bcma/driver_mips.c
+++ b/
drivers/bcma/driver_mips.c
@@
-184,10
+184,11
@@
static void bcma_core_mips_print_irq(struct bcma_device *dev, unsigned int irq)
{
int i;
static const char *irq_name[] = {"2(S)", "3", "4", "5", "6", "D", "I"};
- printk(KERN_DEBUG KBUILD_MODNAME ": core 0x%04x, irq :", dev->id.id);
+
+ bcma_debug(dev->bus, "core 0x%04x, irq :", dev->id.id);
for (i = 0; i <= 6; i++)
- pr
intk
(" %s%s", irq_name[i], i == irq ? "*" : " ");
- pr
intk
("\n");
+ pr
_cont
(" %s%s", irq_name[i], i == irq ? "*" : " ");
+ pr
_cont
("\n");
}
static void bcma_core_mips_dump_irq(struct bcma_bus *bus)