From nobody Thu Apr 30 09:43:23 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6B945C43334 for ; Sat, 4 Jun 2022 23:28:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242412AbiFDX2D (ORCPT ); Sat, 4 Jun 2022 19:28:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53624 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239285AbiFDX2B (ORCPT ); Sat, 4 Jun 2022 19:28:01 -0400 X-Greylist: delayed 399 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Sat, 04 Jun 2022 16:27:58 PDT Received: from mx4.wp.pl (mx4.wp.pl [212.77.101.11]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 434D16335 for ; Sat, 4 Jun 2022 16:27:57 -0700 (PDT) Received: (wp-smtpd smtp.wp.pl 29735 invoked from network); 5 Jun 2022 01:21:15 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=wp.pl; s=1024a; t=1654384875; bh=5+W5QwKb/oQX3qx4qTmH9nnksYIviH9DLf7qcI6p+I4=; h=From:To:Cc:Subject; b=j8hqzrP72hAJlb7TCjGwOg1IZmDqVtSorra1v5zKeDL0XHuFSWUhJzSeJZoI2V0wp uCaI/KuWelwwoll3GBpOdDuTA4gsDh8lblhmGORrSEldlBx0Ym3dbl05MUQeQwvUzh 4Kb6J8BTLZ6i/rHwtK6DPctGEs4IV8zVQYXgyrAQ= Received: from public-gprs207966.centertel.pl (HELO mocarz) (deweloper@wp.pl@[46.134.151.159]) (envelope-sender ) by smtp.wp.pl (WP-SMTPD) with ECDHE-RSA-AES256-GCM-SHA384 encrypted SMTP for ; 5 Jun 2022 01:21:15 +0200 Date: Sun, 5 Jun 2022 01:21:14 +0200 From: Aleksander Mazur To: Jean Delvare , Guenter Roeck Cc: Aleksander Mazur , linux-hwmon@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] hwmon: (f71882fg) Add support for F71858AD (0x0903) Message-ID: <20220605012114.3d85a75a@mocarz> X-Mailer: Claws Mail 4.1.0 (GTK 3.24.34; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-WP-MailID: 937c5ef75b2e3d270d89436ace9fe1d1 X-WP-AV: skaner antywirusowy Poczty Wirtualnej Polski X-WP-SPAM: NO 000000A [gZM0] Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Treat F71858AD like F71858FG. Tested on Igel D220. Signed-off-by: Aleksander Mazur --- drivers/hwmon/f71882fg.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/hwmon/f71882fg.c b/drivers/hwmon/f71882fg.c index 6830e029995d..19b6c643059a 100644 --- a/drivers/hwmon/f71882fg.c +++ b/drivers/hwmon/f71882fg.c @@ -49,6 +49,7 @@ #define SIO_F81768D_ID 0x1210 /* Chipset ID */ #define SIO_F81865_ID 0x0704 /* Chipset ID */ #define SIO_F81866_ID 0x1010 /* Chipset ID */ +#define SIO_F71858AD_ID 0x0903 /* Chipset ID */ #define SIO_F81966_ID 0x1502 /* Chipset ID */ =20 #define REGION_LENGTH 8 @@ -2638,6 +2639,7 @@ static int __init f71882fg_find(int sioaddr, struct f= 71882fg_sio_data *sio_data) sio_data->type =3D f71808a; break; case SIO_F71858_ID: + case SIO_F71858AD_ID: sio_data->type =3D f71858fg; break; case SIO_F71862_ID: --=20 2.36.1