Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ff6f4629 authored by Roberta Dobrescu's avatar Roberta Dobrescu Committed by Jonathan Cameron
Browse files

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: default avatarRoberta Dobrescu <roberta.dobrescu@gmail.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent c5878d9d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -31,7 +31,7 @@ struct ad8366_state {
};
};


static int ad8366_write(struct iio_dev *indio_dev,
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);
	struct ad8366_state *st = iio_priv(indio_dev);
	int ret;
	int ret;