linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MIPS: rtlx: Remove unnecessary KERN_DEBUG in rtlx.c
@ 2014-10-07  3:57 Masanari Iida
  0 siblings, 0 replies; only message in thread
From: Masanari Iida @ 2014-10-07  3:57 UTC (permalink / raw)
  To: linux-kernel, ralf, linux-mips; +Cc: Masanari Iida

This patch remove unnecessary KERNL_DEBUG in pr_debug() within rtlx.c.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 arch/mips/kernel/rtlx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mips/kernel/rtlx.c b/arch/mips/kernel/rtlx.c
index 31b1b76..c5c4fd5 100644
--- a/arch/mips/kernel/rtlx.c
+++ b/arch/mips/kernel/rtlx.c
@@ -94,12 +94,12 @@ int rtlx_open(int index, int can_sleep)
 	int ret = 0;
 
 	if (index >= RTLX_CHANNELS) {
-		pr_debug(KERN_DEBUG "rtlx_open index out of range\n");
+		pr_debug("rtlx_open index out of range\n");
 		return -ENOSYS;
 	}
 
 	if (atomic_inc_return(&channel_wqs[index].in_open) > 1) {
-		pr_debug(KERN_DEBUG "rtlx_open channel %d already opened\n", index);
+		pr_debug("rtlx_open channel %d already opened\n", index);
 		ret = -EBUSY;
 		goto out_fail;
 	}
-- 
2.1.1.273.g97b8860


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2014-10-07  3:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-07  3:57 [PATCH] MIPS: rtlx: Remove unnecessary KERN_DEBUG in rtlx.c Masanari Iida

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).