Commit 068ad41e authored by Colin Ian King's avatar Colin Ian King Committed by Greg Kroah-Hartman

drivers: misc: ad525x_dpot: clean indentation issue, remove tabs

There is a hunk of code in a case statement that is indented one level
too deeply, fix this by removing extra tabs. Also remove one empty line.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 87bf65bc
...@@ -205,9 +205,7 @@ static s32 dpot_read_i2c(struct dpot_data *dpot, u8 reg) ...@@ -205,9 +205,7 @@ static s32 dpot_read_i2c(struct dpot_data *dpot, u8 reg)
dpot_write_r8d8(dpot, dpot_write_r8d8(dpot,
(DPOT_AD5270_1_2_4_READ_RDAC << 2), 0); (DPOT_AD5270_1_2_4_READ_RDAC << 2), 0);
value = dpot_read_r8d16(dpot, value = dpot_read_r8d16(dpot, DPOT_AD5270_1_2_4_RDAC << 2);
DPOT_AD5270_1_2_4_RDAC << 2);
if (value < 0) if (value < 0)
return value; return value;
/* /*
......
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