From: Dmitry Torokhov Date: Sat, 28 May 2005 07:11:32 +0000 (-0500) Subject: Input: Tone down the severity of a printk() in i386/ia64 arch code X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5a72afc03ccc29458502cf032f5c34e5ee004ae7;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git Input: Tone down the severity of a printk() in i386/ia64 arch code for i386, it's printed on many machines and usually is not a cause for worry. Signed-off-by: Dmitry Torokhov Signed-off-by: Vojtech Pavlik --- diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index 0327472393d..819e47754da 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h @@ -241,7 +241,7 @@ static int i8042_pnp_init(void) #if defined(__ia64__) return -ENODEV; #else - printk(KERN_WARNING "PNP: No PS/2 controller found. Probing ports directly.\n"); + printk(KERN_INFO "PNP: No PS/2 controller found. Probing ports directly.\n"); return 0; #endif }