>From 60e21e76773de379deb41ff166f9679b7078276f Mon Sep 17 00:00:00 2001
From: Fernando Guzman Lugo <[email protected]>
Date: Wed, 10 Feb 2010 17:08:20 -0600
Subject: [PATCH] Mailbox: change mailbox version print to pr_debug

it is not useful printing the version every time mailbox is used
instead change it to pr_debug in case someone needs to see the
version can enable the print.

Signed-off-by: Fernando Guzman Lugo <[email protected]>
---
 arch/arm/mach-omap2/mailbox.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c
index 2c9fd1c..1078767 100644
--- a/arch/arm/mach-omap2/mailbox.c
+++ b/arch/arm/mach-omap2/mailbox.c
@@ -113,7 +113,7 @@ static int omap2_mbox_startup(struct omap_mbox *mbox)
        }
 
        l = mbox_read_reg(MAILBOX_REVISION);
-       pr_info("omap mailbox rev %d.%d\n", (l & 0xf0) >> 4, (l & 0x0f));
+       pr_debug("omap mailbox rev %d.%d\n", (l & 0xf0) >> 4, (l & 0x0f));
 
        l = SMARTIDLE | AUTOIDLE;
        mbox_write_reg(l, MAILBOX_SYSCONFIG);
-- 
1.6.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to