Commit c6a69269 authored by Joe Perches's avatar Joe Perches Committed by Mauro Carvalho Chehab

media: dibx000_common: Fix line continuation format

Line continuations with excess spacing causes unexpected output.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 330dada5
...@@ -288,8 +288,8 @@ static int dibx000_i2c_gated_gpio67_xfer(struct i2c_adapter *i2c_adap, ...@@ -288,8 +288,8 @@ static int dibx000_i2c_gated_gpio67_xfer(struct i2c_adapter *i2c_adap,
int ret; int ret;
if (num > 32) { if (num > 32) {
dprintk("%s: too much I2C message to be transmitted (%i).\ dprintk("%s: too much I2C message to be transmitted (%i). Maximum is 32",
Maximum is 32", __func__, num); __func__, num);
return -ENOMEM; return -ENOMEM;
} }
...@@ -335,8 +335,8 @@ static int dibx000_i2c_gated_tuner_xfer(struct i2c_adapter *i2c_adap, ...@@ -335,8 +335,8 @@ static int dibx000_i2c_gated_tuner_xfer(struct i2c_adapter *i2c_adap,
int ret; int ret;
if (num > 32) { if (num > 32) {
dprintk("%s: too much I2C message to be transmitted (%i).\ dprintk("%s: too much I2C message to be transmitted (%i). Maximum is 32",
Maximum is 32", __func__, num); __func__, num);
return -ENOMEM; return -ENOMEM;
} }
......
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