Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753332Ab2JaFvj (ORCPT ); Wed, 31 Oct 2012 01:51:39 -0400 Received: from mail-da0-f46.google.com ([209.85.210.46]:33273 "EHLO mail-da0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752975Ab2JaFvg (ORCPT ); Wed, 31 Oct 2012 01:51:36 -0400 Date: Tue, 30 Oct 2012 22:51:31 -0700 From: Dmitry Torokhov To: Russ Dill Cc: Pantelis Antoniou , Jonathan Cameron , "Patil, Rachna" , linux-iio@vger.kernel.org, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Koen Kooi , Matt Porter , linux-omap@vger.kernel.org Subject: Re: [PATCH] ti_tscadc: Match mfd sub devices to regmap interface Message-ID: <20121031055131.GB31983@core.coreip.homeip.net> References: <1351698945-3881-1-git-send-email-panto@antoniou-consulting.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2297 Lines: 69 On Tue, Oct 30, 2012 at 09:41:00PM -0700, Russ Dill wrote: > On Wed, Oct 31, 2012 at 8:55 AM, Pantelis Antoniou > wrote: > > The MFD parent device now uses a regmap, instead of direct > > memory access. Use the same method in the sub devices to avoid > > nasty surprises. > > > > Also rework the channel initialization of tiadc a bit. > > > > Signed-off-by: Pantelis Antoniou > > --- > > drivers/iio/adc/ti_am335x_adc.c | 27 +++++++++++++++++++-------- > > drivers/input/touchscreen/ti_am335x_tsc.c | 16 +++++++++++++--- > > drivers/mfd/ti_am335x_tscadc.c | 7 +++++-- > > 3 files changed, 37 insertions(+), 13 deletions(-) > > > > diff --git a/drivers/iio/adc/ti_am335x_adc.c b/drivers/iio/adc/ti_am335x_adc.c > > index d48fd79..5f325c1 100644 > > --- a/drivers/iio/adc/ti_am335x_adc.c > > +++ b/drivers/iio/adc/ti_am335x_adc.c > > @@ -23,7 +23,9 @@ > > #include > > #include > > #include > > +#include > > > > +#include > > #include > > #include > > > > @@ -36,13 +38,17 @@ struct tiadc_device { > > > > static unsigned int tiadc_readl(struct tiadc_device *adc, unsigned int reg) > > { > > - return readl(adc->mfd_tscadc->tscadc_base + reg); > > + unsigned int val; > > + > > + val = (unsigned int)-1; > > + regmap_read(adc->mfd_tscadc->regmap_tscadc, reg, &val); > > + return val; > > } > > Would it be cleaner to instead do: > > static unsigned int tiadc_readl(struct tiadc_device *adc, unsigned int reg) > { > unsigned int val; > > return regmap_read(adc->mfd_tscadc->regmap_tscadc, reg, &val) ? : val; > } > > or > int ret; > > ret = regmap_read(adc->mfd_tscadc->regmap_tscadc, reg, &val); > return ret < 0 ret ? : val; Also the function should not be returning unsigned int if it returns errors. Thanks. -- Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/