diff options
author | Gregory Fong <gregory.0xf0@gmail.com> | 2015-10-14 04:27:38 -0700 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-11-11 08:38:29 +0100 |
commit | 63893ea5304c919656613a47b04e35c6814d9041 (patch) | |
tree | 3a71d3486e758eb7793272e578723ab68b329a84 /arch/mips/bcm63xx/timer.c | |
parent | 5361832704d3224c09dd5732ae656d9d5014c1d8 (diff) | |
download | op-kernel-dev-63893ea5304c919656613a47b04e35c6814d9041.zip op-kernel-dev-63893ea5304c919656613a47b04e35c6814d9041.tar.gz |
MIPS: BCM63XX: Use pr_* instead of printk
Signed-off-by: Gregory Fong <gregory.0xf0@gmail.com>
Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: Jonas Gorski <jogo@openwrt.org>
Cc: Joe Perches <joe@perches.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Nicolas Schichan <nschichan@freebox.fr>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/11300/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/bcm63xx/timer.c')
-rw-r--r-- | arch/mips/bcm63xx/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bcm63xx/timer.c b/arch/mips/bcm63xx/timer.c index 5f11359..2110359 100644 --- a/arch/mips/bcm63xx/timer.c +++ b/arch/mips/bcm63xx/timer.c @@ -195,7 +195,7 @@ int bcm63xx_timer_init(void) irq = bcm63xx_get_irq_number(IRQ_TIMER); ret = request_irq(irq, timer_interrupt, 0, "bcm63xx_timer", NULL); if (ret) { - printk(KERN_ERR "bcm63xx_timer: failed to register irq\n"); + pr_err("%s: failed to register irq\n", __func__); return ret; } |