From mboxrd@z Thu Jan 1 00:00:00 1970 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 0E043C433FE for ; Sat, 26 Feb 2022 22:47:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229941AbiBZWsT (ORCPT ); Sat, 26 Feb 2022 17:48:19 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33530 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229937AbiBZWsS (ORCPT ); Sat, 26 Feb 2022 17:48:18 -0500 Received: from thorn.bewilderbeest.net (thorn.bewilderbeest.net [IPv6:2605:2700:0:5::4713:9cab]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C2750FD01 for ; Sat, 26 Feb 2022 14:47:42 -0800 (PST) Received: from hatter.bewilderbeest.net (174-21-187-98.tukw.qwest.net [174.21.187.98]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: zev) by thorn.bewilderbeest.net (Postfix) with ESMTPSA id C3F62135; Sat, 26 Feb 2022 14:47:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bewilderbeest.net; s=thorn; t=1645915658; bh=tIcumh48jcpGZxoz/OHLB3R+NNcH8VOgxfnwIzwaJxQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=mH/In1OBn/CN42PCTjp038POsrGzKe5EmHsGI8RXHUAcxGvDBsmArcN2EfZuleEV5 qWphK0ui1OvFbdjPWvSPI7iJD3sbo7xveOY0eWa/NbvKcQkxOqOBf1qnT2umv32d59 NUrC0VsxI/hJyKdRgPg6aY/5i5OTca0izIf/Vz3o= Date: Sat, 26 Feb 2022 14:47:36 -0800 From: Zev Weiss To: linux-hwmon@vger.kernel.org, Guenter Roeck , Jean Delvare Cc: openbmc@lists.ozlabs.org, linux-kernel@vger.kernel.org, Renze Nicolai , Rob Herring , devicetree@vger.kernel.org Subject: Re: [PATCH 0/5] hwmon: (nct6775) Add i2c support Message-ID: References: <20220226133047.6226-1-zev@bewilderbeest.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20220226133047.6226-1-zev@bewilderbeest.net> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Sat, Feb 26, 2022 at 05:30:42AM PST, Zev Weiss wrote: >Hello, > >This patch series augments the existing nct6775 driver with support >for the hardware's i2c interface. > > > >I've tested the nct6775-platform and nct6775-i2c drivers with the >NCT6779D in an ASRock ROMED8HM3 system (the latter driver on its >AST2500 BMC); both seem to work as expected. Broader testing would of >course be welcome though, as is review feedback. > Also, for the sake of anyone testing or otherwise applying these patches I should mention that the series is based on Guenter's hwmon-next tree (commit 9db3b740a801). Zev