[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1436529569-4715-1-git-send-email-standby24x7@gmail.com>
Date: Fri, 10 Jul 2015 20:59:29 +0900
From: Masanari Iida <standby24x7@...il.com>
To: jonas@...thpole.se, linux@...ts.openrisc.net,
linux-kernel@...r.kernel.org, akpm@...ux-foundation.org
Cc: Masanari Iida <standby24x7@...il.com>
Subject: [PATCH/Resend] openrisc: Remove unnecessary KERN_INFO in time.c
This patch remove unnecessary KERN_INFO in time.c
Signed-off-by: Masanari Iida <standby24x7@...il.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.5.0.rc1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists