Commit d92241a0 authored by Daniel Baluta's avatar Daniel Baluta Committed by Jonathan Cameron

iio: imu: inv_mpu6050: Fix newlines to make code easier to read

This fixes the following checkpatch.pl warnings:
	* WARNING: Missing a blank line after declarations
	* CHECK: Blank lines aren't necessary before a close brace '}'
Signed-off-by: default avatarDaniel Baluta <daniel.baluta@intel.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent acf7146e
...@@ -186,7 +186,6 @@ int inv_mpu_acpi_create_mux_client(struct i2c_client *client) ...@@ -186,7 +186,6 @@ int inv_mpu_acpi_create_mux_client(struct i2c_client *client)
st->mux_client = i2c_new_device(st->mux_adapter, &info); st->mux_client = i2c_new_device(st->mux_adapter, &info);
if (!st->mux_client) if (!st->mux_client)
return -ENODEV; return -ENODEV;
} }
return 0; return 0;
...@@ -195,6 +194,7 @@ int inv_mpu_acpi_create_mux_client(struct i2c_client *client) ...@@ -195,6 +194,7 @@ int inv_mpu_acpi_create_mux_client(struct i2c_client *client)
void inv_mpu_acpi_delete_mux_client(struct i2c_client *client) void inv_mpu_acpi_delete_mux_client(struct i2c_client *client)
{ {
struct inv_mpu6050_state *st = iio_priv(dev_get_drvdata(&client->dev)); struct inv_mpu6050_state *st = iio_priv(dev_get_drvdata(&client->dev));
if (st->mux_client) if (st->mux_client)
i2c_unregister_device(st->mux_client); i2c_unregister_device(st->mux_client);
} }
......
...@@ -365,6 +365,7 @@ static int inv_write_raw_get_fmt(struct iio_dev *indio_dev, ...@@ -365,6 +365,7 @@ static int inv_write_raw_get_fmt(struct iio_dev *indio_dev,
return -EINVAL; return -EINVAL;
} }
static int inv_mpu6050_write_accel_scale(struct inv_mpu6050_state *st, int val) static int inv_mpu6050_write_accel_scale(struct inv_mpu6050_state *st, int val)
{ {
int result, i; int result, i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment