aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/dvb-frontends/stv6110x.c
diff options
context:
space:
mode:
authorGravatar Mauro Carvalho Chehab <mchehab@s-opensource.com> 2018-01-04 13:08:56 -0500
committerGravatar Mauro Carvalho Chehab <mchehab@s-opensource.com> 2018-01-04 13:15:05 -0500
commit6e6a8b5a38cb04d5ef35d4eb57836126b954e7c8 (patch)
tree1ea9d8dbba617094c1f8ae2ff4806eeb868ee2c3 /drivers/media/dvb-frontends/stv6110x.c
parentmedia: fix usage of whitespaces and on indentation (diff)
downloadlinux-6e6a8b5a38cb04d5ef35d4eb57836126b954e7c8.tar.gz
linux-6e6a8b5a38cb04d5ef35d4eb57836126b954e7c8.tar.bz2
linux-6e6a8b5a38cb04d5ef35d4eb57836126b954e7c8.zip
media: replace all <spaces><tab> occurrences
There are a lot of places where sequences of space/tabs are found. Get rid of all spaces before tabs. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/dvb-frontends/stv6110x.c')
-rw-r--r--drivers/media/dvb-frontends/stv6110x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/stv6110x.c b/drivers/media/dvb-frontends/stv6110x.c
index d4ac29ac9b4f..d8950028d021 100644
--- a/drivers/media/dvb-frontends/stv6110x.c
+++ b/drivers/media/dvb-frontends/stv6110x.c
@@ -46,7 +46,7 @@ static int stv6110x_read_reg(struct stv6110x_state *stv6110x, u8 reg, u8 *data)
u8 b0[] = { reg };
u8 b1[] = { 0 };
struct i2c_msg msg[] = {
- { .addr = config->addr, .flags = 0, .buf = b0, .len = 1 },
+ { .addr = config->addr, .flags = 0, .buf = b0, .len = 1 },
{ .addr = config->addr, .flags = I2C_M_RD, .buf = b1, .len = 1 }
};