[PATCH/Resend] openrisc: Remove unnecessary KERN_INFO in time.c

From: Masanari Iida
Date: Fri Jul 10 2015 - 07:59:43 EST


This patch remove unnecessary KERN_INFO in time.c

Signed-off-by: Masanari Iida <standby24x7@xxxxxxxxx>
---
arch/openrisc/kernel/time.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/openrisc/kernel/time.c b/arch/openrisc/kernel/time.c
index 7c52e94..3b50ffd 100644
--- a/arch/openrisc/kernel/time.c
+++ b/arch/openrisc/kernel/time.c
@@ -53,20 +53,20 @@ static void openrisc_timer_set_mode(enum clock_event_mode mode,
{
switch (mode) {
case CLOCK_EVT_MODE_PERIODIC:
- pr_debug(KERN_INFO "%s: periodic\n", __func__);
+ pr_debug("%s: periodic\n", __func__);
BUG();
break;
case CLOCK_EVT_MODE_ONESHOT:
- pr_debug(KERN_INFO "%s: oneshot\n", __func__);
+ pr_debug("%s: oneshot\n", __func__);
break;
case CLOCK_EVT_MODE_UNUSED:
- pr_debug(KERN_INFO "%s: unused\n", __func__);
+ pr_debug("%s: unused\n", __func__);
break;
case CLOCK_EVT_MODE_SHUTDOWN:
- pr_debug(KERN_INFO "%s: shutdown\n", __func__);
+ pr_debug("%s: shutdown\n", __func__);
break;
case CLOCK_EVT_MODE_RESUME:
- pr_debug(KERN_INFO "%s: resume\n", __func__);
+ pr_debug("%s: resume\n", __func__);
break;
}
}
--
2.5.0.rc1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/