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

Commit 724330a9 authored by Brian Masney's avatar Brian Masney Committed by Jonathan Cameron
Browse files

staging: iio: tsl2x7x: put function definitions on a single line



The functions tsl2x7x_invoke_change() and tsl2x7x_prox_calculate() are
short enough that the return value and static declaration can be moved
onto the same line with the function name. This patch makes that change
to increase code readability.

Signed-off-by: default avatarBrian Masney <masneyb@onstation.org>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 3d8e4400
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -752,8 +752,7 @@ static int tsl2x7x_chip_off(struct iio_dev *indio_dev)
 * put device back into proper state, and unlock
 * resource.
 */
static
int tsl2x7x_invoke_change(struct iio_dev *indio_dev)
static int tsl2x7x_invoke_change(struct iio_dev *indio_dev)
{
	struct tsl2X7X_chip *chip = iio_priv(indio_dev);
	int device_status = chip->tsl2x7x_chip_status;
@@ -777,8 +776,7 @@ int tsl2x7x_invoke_change(struct iio_dev *indio_dev)
	return ret;
}

static
void tsl2x7x_prox_calculate(int *data, int length,
static void tsl2x7x_prox_calculate(int *data, int length,
				   struct tsl2x7x_prox_stat *statP)
{
	int i;