From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752173AbbFFLFM (ORCPT ); Sat, 6 Jun 2015 07:05:12 -0400 Received: from plane.gmane.org ([80.91.229.3]:51573 "EHLO plane.gmane.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751422AbbFFLFG (ORCPT ); Sat, 6 Jun 2015 07:05:06 -0400 X-Injected-Via-Gmane: http://gmane.org/ To: linux-kernel@vger.kernel.org From: Doa379 Subject: Re: [BUG] psmouse failes recognize synaptics mouse Date: Sat, 6 Jun 2015 10:59:29 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 78.148.179.78 (Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0 Iceweasel/31.7.0) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Seeing the details of the Folio 1040 which is already supported: $ cat /sys/bus/pnp/drivers/i8042\ aux/00\:07/id SYN300d SYN0100 SYN0002 PNP0f13 For the Folio 1020 we have: $ cat /sys/bus/pnp/drivers/i8042\ aux/00\:04/id SYN3018 SYN0100 SYN0002 PNP0f13 Can we request support be added for the Folio 1020 to the synaptics driver in the Linux kernel? I already tried modifying drivers/input/mouse/synaptics.c line 1430 but the driver does not load: static const struct dmi_system_id forcepad_dmi_table[] __initconst = { #if defined(CONFIG_DMI) && defined(CONFIG_X86) { .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook Folio 1040 G1"), }, }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), + DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook Folio 1020 G1"), + }, + }, #endif { } };