From patchwork Thu May 4 09:47:15 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?5buW5bSH5qau?= X-Patchwork-Id: 9711331 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 1372460387 for ; Thu, 4 May 2017 09:56:43 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0AADC285FD for ; Thu, 4 May 2017 09:56:43 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id F06B72867A; Thu, 4 May 2017 09:56:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5AB89285FD for ; Thu, 4 May 2017 09:56:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751912AbdEDJ4l convert rfc822-to-8bit (ORCPT ); Thu, 4 May 2017 05:56:41 -0400 Received: from emcscan.emc.com.tw ([192.72.220.5]:55345 "EHLO emcscan.emc.com.tw" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751897AbdEDJ4k (ORCPT ); Thu, 4 May 2017 05:56:40 -0400 X-Greylist: delayed 593 seconds by postgrey-1.27 at vger.kernel.org; Thu, 04 May 2017 05:56:40 EDT Received: from unknown (HELO elanic) ([192.168.10.6]) by emcscan.emc.com.tw with ESMTP; 04 May 2017 17:47:15 +0800 Received: from elanic (elanic.emc.com.tw [127.0.0.1]) by elanic (Postfix) with ESMTP id E91B23CA945; Thu, 4 May 2017 17:42:23 +0800 (CST) Received: from nb92073 (unknown [192.168.33.46]) by elanic (Postfix) with ESMTP id D19513C9A1B; Thu, 4 May 2017 17:42:23 +0800 (CST) From: =?utf-8?B?5buW5bSH5qau?= To: "'Kai-Heng Feng'" Cc: References: In-Reply-To: Subject: RE: ASUS G752VS Touchpad does not work Date: Thu, 4 May 2017 17:47:15 +0800 Message-ID: <005e01d2c4bb$6961c7f0$3c2557d0$@emc.com.tw> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 14.0 Thread-Index: AQFw/fhAQFb+Vyyqhq5EvnGL+w6HHqKnejzQ Content-Language: zh-tw Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi Kai-Heng -----Original Message----- From: Kai-Heng Feng [mailto:kai.heng.feng@canonical.com] Sent: Thursday, May 04, 2017 3:59 PM To: kt.liao@emc.com.tw; dusonlin@emc.com.tw Cc: linux-input@vger.kernel.org Subject: ASUS G752VS Touchpad does not work Hi KT Liao, Duson Lin, A user reported that the touchpad on ASUS G752VS does not work [1], it's an ELAN touchapd. I did the following change, the touchpad correctly loads elan-i2c instead of hid-multitouch, but it's still not working. [KT] I check the touchpad of this model, it's MS precision touchpad. It must use "hid-multitouch", not "elan-i2c". Thanks. [1] https://bugs.launchpad.net/bugs/1653456 --- -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index da62a7695e77..acddb407e766 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c @@ -2377,6 +2377,7 @@ static const struct hid_device_id hid_ignore_list[] = { { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20) }, { HID_I2C_DEVICE(USB_VENDOR_ID_ELAN, 0x0400) }, { HID_I2C_DEVICE(USB_VENDOR_ID_ELAN, 0x0401) }, + { HID_I2C_DEVICE(USB_VENDOR_ID_ELAN, 0x3043) }, { HID_USB_DEVICE(USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5) }, { HID_USB_DEVICE(USB_VENDOR_ID_ETT, USB_DEVICE_ID_TC5UH) }, { HID_USB_DEVICE(USB_VENDOR_ID_ETT, USB_DEVICE_ID_TC4UM) }, diff --git a/drivers/input/mouse/elan_i2c_core.c b/drivers/input/mouse/elan_i2c_core.c index a26f44c28d82..bf661ce5dccc 100644 --- a/drivers/input/mouse/elan_i2c_core.c +++ b/drivers/input/mouse/elan_i2c_core.c @@ -1235,6 +1238,7 @@ static const struct acpi_device_id elan_acpi_id[] = { { "ELAN0600", 0 }, { "ELAN0605", 0 }, { "ELAN1000", 0 }, + { "ELAN1203", 0 }, { } }; MODULE_DEVICE_TABLE(acpi, elan_acpi_id);