]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
media: dibx000_common: Fix line continuation format
authorJoe Perches <joe@perches.com>
Thu, 16 Nov 2017 15:27:28 +0000 (10:27 -0500)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 12 Dec 2017 12:53:57 +0000 (07:53 -0500)
Line continuations with excess spacing causes unexpected output.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/dvb-frontends/dibx000_common.c

index bc28184c7fb0855d0cdb1d23167a95ac2cf5b98f..d981233e458f9d60b25fc4d229f456b82d2816f7 100644 (file)
@@ -288,8 +288,8 @@ static int dibx000_i2c_gated_gpio67_xfer(struct i2c_adapter *i2c_adap,
        int ret;
 
        if (num > 32) {
-               dprintk("%s: too much I2C message to be transmitted (%i).\
-                               Maximum is 32", __func__, num);
+               dprintk("%s: too much I2C message to be transmitted (%i). Maximum is 32",
+                       __func__, num);
                return -ENOMEM;
        }
 
@@ -335,8 +335,8 @@ static int dibx000_i2c_gated_tuner_xfer(struct i2c_adapter *i2c_adap,
        int ret;
 
        if (num > 32) {
-               dprintk("%s: too much I2C message to be transmitted (%i).\
-                               Maximum is 32", __func__, num);
+               dprintk("%s: too much I2C message to be transmitted (%i). Maximum is 32",
+                       __func__, num);
                return -ENOMEM;
        }