This patch remove unnecessary KERN_INFO in time.c

Signed-off-by: Masanari Iida <standby2...@gmail.com>
---
 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.3.0.rc0

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

Reply via email to