From mboxrd@z Thu Jan 1 00:00:00 1970 From: marex@denx.de (Marek Vasut) Date: Thu, 5 Sep 2013 22:29:54 +0200 Subject: [patch] iio: mxs-lradc: use helper functions to simplify the code In-Reply-To: References: <201309051216.18305.jbe@pengutronix.de> <20130905181639.GA19090@elgon.mountain> Message-ID: <201309052229.55139.marex@denx.de> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Dear Fabio Estevam, > On Thu, Sep 5, 2013 at 3:16 PM, Dan Carpenter wrote: > > I have introduced lradc_reg_set() and lradc_reg_clear(). It simplifies > > the callers and makes the lines shorter. > > Looks good, just one minor suggestion: > > Signed-off-by: Dan Carpenter > > > > diff --git a/drivers/staging/iio/adc/mxs-lradc.c > > b/drivers/staging/iio/adc/mxs-lradc.c index a08c173..da5d04b 100644 > > --- a/drivers/staging/iio/adc/mxs-lradc.c > > +++ b/drivers/staging/iio/adc/mxs-lradc.c > > @@ -228,6 +228,16 @@ struct mxs_lradc { > > > > #define LRADC_RESOLUTION 12 > > #define LRADC_SINGLE_SAMPLE_MASK ((1 << LRADC_RESOLUTION) > > - 1) > > > > +static void lradc_reg_set(struct mxs_lradc *lradc, u32 val, size_t chan) > > +{ > > + writel(val, lradc->base + chan + STMP_OFFSET_REG_SET); > > +} > > + > > +static void lradc_reg_clear(struct mxs_lradc *lradc, u32 val, size_t > > chan) +{ > > + writel(val, lradc->base + chan + STMP_OFFSET_REG_CLR); > > +} > > Maybe 'static inline' ? static only, the inline is meaningless, GCC will handle that. Best regards, Marek Vasut