Skip to content

Commit

Permalink
iio: light: tsl2591: delete a stray tab
Browse files Browse the repository at this point in the history
This return statement is indented one more tab than it should be.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/YJ523y0dhc1IwCOB@mwanda
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
  • Loading branch information
Dan Carpenter authored and Jonathan Cameron committed May 17, 2021
1 parent 7fce54a commit 2989df4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/iio/light/tsl2591.c
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ static int tsl2591_read_channel_data(struct iio_dev *indio_dev,
sizeof(als_data), als_data);
if (ret < 0) {
dev_err(&client->dev, "Failed to read data bytes");
return ret;
return ret;
}

als_ch0 = get_unaligned_le16(&als_data[0]);
Expand Down

0 comments on commit 2989df4

Please sign in to comment.