From: Dmitry Torokhov Date: Mon, 25 Aug 2014 18:24:47 +0000 (-0700) Subject: Input: ALPS - suppress message about 'Unknown touchpad' X-Git-Tag: v3.17-rc7~7^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a9e06219df9ce92567aa1cb3dd5e0bb498afb93b;p=platform%2Fkernel%2Flinux-exynos.git Input: ALPS - suppress message about 'Unknown touchpad' When we fail to match data returned by E7 and EC reports we state that we found "Unknown ALPS touchpad" whereas it is most likely it is not ALPS touchpad at all. Change wording a bit and reduce the message to debug so that it does not litter users logs and confuse them. Reported-by: Paul Menzel Acked-by: Hans de Goede Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c index a59a1a6..a956b98 100644 --- a/drivers/input/mouse/alps.c +++ b/drivers/input/mouse/alps.c @@ -2234,8 +2234,8 @@ static int alps_identify(struct psmouse *psmouse, struct alps_data *priv) return 0; } - psmouse_info(psmouse, - "Unknown ALPS touchpad: E7=%3ph, EC=%3ph\n", e7, ec); + psmouse_dbg(psmouse, + "Likely not an ALPS touchpad: E7=%3ph, EC=%3ph\n", e7, ec); return -EINVAL; }