From mboxrd@z Thu Jan 1 00:00:00 1970 From: arnaud.pouliquen@st.com (Arnaud Pouliquen) Date: Wed, 10 Jan 2018 16:32:06 +0100 Subject: [RFC PATCH asoc] IIO: ADC: stm32_dfsdm_stop_filter() can be static In-Reply-To: <20180110152305.GA83560@lkp-sb05> References: <201801102320.fKoiIrHz%fengguang.wu@intel.com> <20180110152305.GA83560@lkp-sb05> Message-ID: <76d70ab9-43a7-88b0-1a76-a3a0275cabaf@st.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Acked-by: Arnaud Pouliquen On 01/10/2018 04:23 PM, kbuild test robot wrote: > > Fixes: e2e6771c6462 ("IIO: ADC: add STM32 DFSDM sigma delta ADC support") > Signed-off-by: Fengguang Wu > --- > ?stm32-dfsdm-adc.c |??? 8 ++++---- > ?1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/iio/adc/stm32-dfsdm-adc.c > b/drivers/iio/adc/stm32-dfsdm-adc.c > index b03ca3f..e628d04 100644 > --- a/drivers/iio/adc/stm32-dfsdm-adc.c > +++ b/drivers/iio/adc/stm32-dfsdm-adc.c > @@ -254,7 +254,7 @@ static int stm32_dfsdm_start_filter(struct > stm32_dfsdm *dfsdm, > ?????????????????????????????????? DFSDM_CR1_RSWSTART(1)); > ?} > ? > -void stm32_dfsdm_stop_filter(struct stm32_dfsdm *dfsdm, unsigned int fl_id) > +static void stm32_dfsdm_stop_filter(struct stm32_dfsdm *dfsdm, unsigned > int fl_id) > ?{ > ???????? /* Disable conversion */ > ???????? regmap_update_bits(dfsdm->regmap, DFSDM_CR1(fl_id), > @@ -296,9 +296,9 @@ static int stm32_dfsdm_filter_configure(struct > stm32_dfsdm *dfsdm, > ?????????????????????????????????? DFSDM_CR1_RSYNC(fl->sync_mode)); > ?} > ? > -int stm32_dfsdm_channel_parse_of(struct stm32_dfsdm *dfsdm, > -??????????????????????????????? struct iio_dev *indio_dev, > -??????????????????????????????? struct iio_chan_spec *ch) > +static int stm32_dfsdm_channel_parse_of(struct stm32_dfsdm *dfsdm, > +?????????????????????????????????????? struct iio_dev *indio_dev, > +?????????????????????????????????????? struct iio_chan_spec *ch) > ?{ > ???????? struct stm32_dfsdm_channel *df_ch; > ???????? const char *of_str;