diff mbox

powerpc/eeh: Quieten EEH message when no adapters are found

Message ID 1475366978-18713-1-git-send-email-anton@ozlabs.org (mailing list archive)
State Accepted
Headers show

Commit Message

Anton Blanchard Oct. 2, 2016, 12:09 a.m. UTC
From: Anton Blanchard <anton@samba.org>

No real need for this to be pr_warn(), reduce it to pr_info().

Signed-off-by: Anton Blanchard <anton@samba.org>
---
 arch/powerpc/kernel/eeh.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Gavin Shan Oct. 2, 2016, 11:28 a.m. UTC | #1
On Sun, Oct 02, 2016 at 11:09:38AM +1100, Anton Blanchard wrote:
>From: Anton Blanchard <anton@samba.org>
>
>No real need for this to be pr_warn(), reduce it to pr_info().
>
>Signed-off-by: Anton Blanchard <anton@samba.org>

Acked-by: Gavin Shan <gwshan@linux.vnet.ibm.com>
Michael Ellerman Oct. 5, 2016, 2:36 a.m. UTC | #2
On Sun, 2016-02-10 at 00:09:38 UTC, Anton Blanchard wrote:
> From: Anton Blanchard <anton@samba.org>
> 
> No real need for this to be pr_warn(), reduce it to pr_info().
> 
> Signed-off-by: Anton Blanchard <anton@samba.org>
> Acked-by: Gavin Shan <gwshan@linux.vnet.ibm.com>

Applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/91ac730b8b1d7c5e71e7ed2d785a61

cheers
diff mbox

Patch

diff --git a/arch/powerpc/kernel/eeh.c b/arch/powerpc/kernel/eeh.c
index c9bc78e..3f0ca80 100644
--- a/arch/powerpc/kernel/eeh.c
+++ b/arch/powerpc/kernel/eeh.c
@@ -1044,7 +1044,7 @@  int eeh_init(void)
 	if (eeh_enabled())
 		pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
 	else
-		pr_warn("EEH: No capable adapters found\n");
+		pr_info("EEH: No capable adapters found\n");
 
 	return ret;
 }