View | Details | Raw Unified | Return to bug 77391
Collapse All | Expand All

(-)a/drivers/input/mouse/elantech.c (-1 / +2 lines)
Lines 1283-1289 int elantech_detect(struct psmouse *psmouse, bool set_properties) Link Here
1283
	 * Report this in case there are Elantech models that use a different
1283
	 * Report this in case there are Elantech models that use a different
1284
	 * set of magic numbers
1284
	 * set of magic numbers
1285
	 */
1285
	 */
1286
	if (param[0] != 0x3c || param[1] != 0x03 ||
1286
	if (param[0] != 0x3c || 
1287
            (param[1] != 0x03 && param[1] != 0xf0) ||
1287
	    (param[2] != 0xc8 && param[2] != 0x00)) {
1288
	    (param[2] != 0xc8 && param[2] != 0x00)) {
1288
		psmouse_dbg(psmouse,
1289
		psmouse_dbg(psmouse,
1289
			    "unexpected magic knock result 0x%02x, 0x%02x, 0x%02x.\n",
1290
			    "unexpected magic knock result 0x%02x, 0x%02x, 0x%02x.\n",

Return to bug 77391