Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9e06219 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

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: default avatarPaul Menzel <paulepanter@users.sourceforge.net>
Acked-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 8ff21f44
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
}