Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934025AbcCNJYd (ORCPT ); Mon, 14 Mar 2016 05:24:33 -0400 Received: from mail-wm0-f52.google.com ([74.125.82.52]:33686 "EHLO mail-wm0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752172AbcCNJYX (ORCPT ); Mon, 14 Mar 2016 05:24:23 -0400 Subject: Re: [PATCH-vs-togreg 1/2] iio: ina2xx-adc: update the CALIB. register when RShunt changes To: Jonathan Cameron , knaack.h@gmx.de, lars@metafoo.de, pmeerw@pmeerw.net References: <1457707950-17593-1-git-send-email-marc.titinger@baylibre.com> <56E3DF26.8050709@kernel.org> Cc: afd@ti.com, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org From: Marc Titinger Message-ID: <56E68343.90904@baylibre.com> Date: Mon, 14 Mar 2016 10:24:19 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: <56E3DF26.8050709@kernel.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 935 Lines: 30 On 12/03/2016 10:19, Jonathan Cameron wrote: > On 11/03/16 14:52, Marc Titinger wrote: >> The user (or an init script) may setup RShunt via sysfs after the >> driver was initialized, for instance based on the EEPROM contents >> of a modular probe. The calibration register must be set accordingly. >> >> Signed-off-by: Marc Titinger > Other than the two little fixes (Andrew's and the autobuilder one) > this series looks good to me. Will pick up v2. > > I think both of these are fixes that will want to go through the fixes > tree after the merge window has closed anyway. Thanks Jon, sending v2 ASAP. M. > > Jonathan >> --- >> tested with BeagleBone-black and BayLibre-acme. >> --- >> drivers/iio/adc/ina2xx-adc.c | 36 +++++++++++++++++++++++++----------- >> 1 file changed, 25 insertions(+), 11 deletions(-) >> >> diff --git a/drivers/iio/adc/ina2xx-adc.c b/drivers/iio/adc/ina2xx-adc.c ...