From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754775AbdCICFJ (ORCPT ); Wed, 8 Mar 2017 21:05:09 -0500 Received: from bh-25.webhostbox.net ([208.91.199.152]:35076 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752378AbdCICFH (ORCPT ); Wed, 8 Mar 2017 21:05:07 -0500 Subject: Re: [PATCH] hwmon: (dell-smm) Add Dell XPS 15 9560 into DMI list To: =?UTF-8?Q?Pali_Roh=c3=a1r?= , Jean Delvare References: <1488580912-13578-1-git-send-email-pali.rohar@gmail.com> Cc: linux-hwmon@vger.kernel.org, linux-kernel@vger.kernel.org, platform-driver-x86@vger.kernel.org, Vasile Dumitrescu From: Guenter Roeck Message-ID: <6d67939d-8aad-aa12-ee71-e7cc0f302f65@roeck-us.net> Date: Wed, 8 Mar 2017 17:43:59 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <1488580912-13578-1-git-send-email-pali.rohar@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Authenticated_sender: linux@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: linux@roeck-us.net X-Authenticated-Sender: bh-25.webhostbox.net: linux@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/03/2017 02:41 PM, Pali Rohár wrote: > It was reported that dell-smm-hwmon is working fine on Dell XPS 15 9560. > > Link: http://www.spinics.net/lists/platform-driver-x86/msg10751.html > Reported-by: Vasile Dumitrescu > Signed-off-by: Pali Rohár With Vasile's feedback, I'll consider this patch tested and will apply it to hwmon-next. Thanks, Guenter > --- > drivers/hwmon/dell-smm-hwmon.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/hwmon/dell-smm-hwmon.c b/drivers/hwmon/dell-smm-hwmon.c > index 34704b0..3189246 100644 > --- a/drivers/hwmon/dell-smm-hwmon.c > +++ b/drivers/hwmon/dell-smm-hwmon.c > @@ -995,6 +995,13 @@ enum i8k_configs { > }, > .driver_data = (void *)&i8k_config_data[DELL_XPS], > }, > + { > + .ident = "Dell XPS 15 9560", > + .matches = { > + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), > + DMI_MATCH(DMI_PRODUCT_NAME, "XPS 15 9560"), > + }, > + }, > { } > }; > >