From: Roberta Dobrescu Date: Tue, 30 Dec 2014 18:45:44 +0000 (+0200) Subject: iio: amplifiers: ad8366: Use right order for type specification X-Git-Tag: v4.14-rc1~5938^2~245^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff6f46295d81fab7ef7379761ea87ba71cc13fce;p=platform%2Fkernel%2Flinux-rpi.git iio: amplifiers: ad8366: Use right order for type specification This patch fixes the following checkpatch.pl warning: WARNING: type 'char unsigned' should be specified in [[un]signed] [short|int|long|long long] order Signed-off-by: Roberta Dobrescu Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/amplifiers/ad8366.c b/drivers/iio/amplifiers/ad8366.c index fce25a0a..c0d364e 100644 --- a/drivers/iio/amplifiers/ad8366.c +++ b/drivers/iio/amplifiers/ad8366.c @@ -31,7 +31,7 @@ struct ad8366_state { }; static int ad8366_write(struct iio_dev *indio_dev, - unsigned char ch_a, char unsigned ch_b) + unsigned char ch_a, unsigned char ch_b) { struct ad8366_state *st = iio_priv(indio_dev); int ret;