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

Commit 61072dbc authored by Lars-Peter Clausen's avatar Lars-Peter Clausen Committed by Jonathan Cameron
Browse files

iio: buffer: Use roundup() instead of open-coding it



Makes the code slightly shorter and a bit easier to understand.

Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 7ddebf54
Loading
Loading
Loading
Loading
+5 −11
Original line number Original line Diff line number Diff line
@@ -979,9 +979,7 @@ static int iio_buffer_update_demux(struct iio_dev *indio_dev,
			else
			else
				length = ch->scan_type.storagebits / 8;
				length = ch->scan_type.storagebits / 8;
			/* Make sure we are aligned */
			/* Make sure we are aligned */
			in_loc += length;
			in_loc = roundup(in_loc, length) + length;
			if (in_loc % length)
				in_loc += length - in_loc % length;
		}
		}
		p = kmalloc(sizeof(*p), GFP_KERNEL);
		p = kmalloc(sizeof(*p), GFP_KERNEL);
		if (p == NULL) {
		if (p == NULL) {
@@ -994,10 +992,8 @@ static int iio_buffer_update_demux(struct iio_dev *indio_dev,
				ch->scan_type.repeat;
				ch->scan_type.repeat;
		else
		else
			length = ch->scan_type.storagebits / 8;
			length = ch->scan_type.storagebits / 8;
		if (out_loc % length)
		out_loc = roundup(out_loc, length);
			out_loc += length - out_loc % length;
		in_loc = roundup(in_loc, length);
		if (in_loc % length)
			in_loc += length - in_loc % length;
		p->from = in_loc;
		p->from = in_loc;
		p->to = out_loc;
		p->to = out_loc;
		p->length = length;
		p->length = length;
@@ -1019,10 +1015,8 @@ static int iio_buffer_update_demux(struct iio_dev *indio_dev,
				ch->scan_type.repeat;
				ch->scan_type.repeat;
		else
		else
			length = ch->scan_type.storagebits / 8;
			length = ch->scan_type.storagebits / 8;
		if (out_loc % length)
		out_loc = roundup(out_loc, length);
			out_loc += length - out_loc % length;
		in_loc = roundup(in_loc, length);
		if (in_loc % length)
			in_loc += length - in_loc % length;
		p->from = in_loc;
		p->from = in_loc;
		p->to = out_loc;
		p->to = out_loc;
		p->length = length;
		p->length = length;