On 28/07/14 12:18, Teodora Baluta wrote: > Fix the following sparse warning: > > drivers/staging/iio/light/isl29018.c:508:50: warning: incorrect type in > argument 3 (different signedness) > drivers/staging/iio/light/isl29018.c:508:50: expected unsigned int > *conf_adc_bit > drivers/staging/iio/light/isl29018.c:508:50: got int *<noident> > > Signed-off-by: Teodora Baluta <teodora.baluta@xxxxxxxxx> Applied to the togreg branch of iio.git initially pushed out as testing for the autobuilders to play. J > --- > drivers/staging/iio/light/isl29018.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/iio/light/isl29018.c b/drivers/staging/iio/light/isl29018.c > index 3660a43..86cc8f9 100644 > --- a/drivers/staging/iio/light/isl29018.c > +++ b/drivers/staging/iio/light/isl29018.c > @@ -454,7 +454,7 @@ static const struct attribute_group isl29108_group = { > static int isl29018_chip_init(struct isl29018_chip *chip) > { > int status; > - int new_adc_bit; > + unsigned int new_adc_bit; > unsigned int new_range; > > /* Code added per Intersil Application Note 1534: > -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html