On Tue, 17 Dec 2019 11:30:09 +0000 "Ardelean, Alexandru" <alexandru.Ardelean@xxxxxxxxxx> wrote: > On Tue, 2019-12-17 at 08:11 -0300, Daniel Junho wrote: > > Fix checkpatch warning: > > WARNING: Prefer 'unsigned int' to bare use of 'unsigned' > > +static int ad7923_scan_direct(struct ad7923_state *st, unsigned ch) > > > > Reviewed-by: Alexandru Ardelean <alexandru.ardelean@xxxxxxxxxx> Applied, Thanks, Jonathan > > > Signed-off-by: Daniel Junho <djunho@xxxxxxxxx> > > --- > > drivers/iio/adc/ad7923.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/iio/adc/ad7923.c b/drivers/iio/adc/ad7923.c > > index 969c06b7d2b7..e535cec9fc02 100644 > > --- a/drivers/iio/adc/ad7923.c > > +++ b/drivers/iio/adc/ad7923.c > > @@ -184,7 +184,7 @@ static irqreturn_t ad7923_trigger_handler(int irq, > > void *p) > > return IRQ_HANDLED; > > } > > > > -static int ad7923_scan_direct(struct ad7923_state *st, unsigned ch) > > +static int ad7923_scan_direct(struct ad7923_state *st, unsigned int ch) > > { > > int ret, cmd; > >