]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: i2o: Join quoted string split across lines
authorVatika Harlalka <vatikaharlalka@gmail.com>
Wed, 18 Feb 2015 19:49:16 +0000 (01:19 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 26 Feb 2015 20:23:58 +0000 (12:23 -0800)
This patch removes the checkpatch.pl warnings "quoted string split accross lines"

Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/i2o/driver.c

index 111c3edde035d5bee7ca8e5b659a126c06e87ff0..06119bb3eb5fb56d62afdb64e5503254433a0076 100644 (file)
@@ -102,8 +102,7 @@ int i2o_driver_register(struct i2o_driver *drv)
 
        for (i = 0; i2o_drivers[i]; i++)
                if (i >= i2o_max_drivers) {
-                       osm_err("too many drivers registered, increase "
-                               "max_drivers\n");
+                       osm_err("too many drivers registered, increase max_drivers\n");
                        spin_unlock_irqrestore(&i2o_drivers_lock, flags);
                        rc = -EFAULT;
                        goto out;
@@ -244,8 +243,8 @@ int i2o_driver_dispatch(struct i2o_controller *c, u32 m)
        }
 
        if (unlikely(!drv->reply)) {
-               osm_debug("%s: Reply to driver %s, but no reply function"
-                         " defined!\n", c->name, drv->name);
+               osm_debug("%s: Reply to driver %s, but no reply function defined!\n",
+                       c->name, drv->name);
                return -EIO;
        }