Commit f0a6fb66 authored by Vatika Harlalka's avatar Vatika Harlalka Committed by Greg Kroah-Hartman

Staging: i2o: Join quoted string split across lines

This patch removes the checkpatch.pl warnings "quoted string split accross lines"
Signed-off-by: default avatarVatika Harlalka <vatikaharlalka@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9e95ff88
...@@ -102,8 +102,7 @@ int i2o_driver_register(struct i2o_driver *drv) ...@@ -102,8 +102,7 @@ int i2o_driver_register(struct i2o_driver *drv)
for (i = 0; i2o_drivers[i]; i++) for (i = 0; i2o_drivers[i]; i++)
if (i >= i2o_max_drivers) { if (i >= i2o_max_drivers) {
osm_err("too many drivers registered, increase " osm_err("too many drivers registered, increase max_drivers\n");
"max_drivers\n");
spin_unlock_irqrestore(&i2o_drivers_lock, flags); spin_unlock_irqrestore(&i2o_drivers_lock, flags);
rc = -EFAULT; rc = -EFAULT;
goto out; goto out;
...@@ -244,8 +243,8 @@ int i2o_driver_dispatch(struct i2o_controller *c, u32 m) ...@@ -244,8 +243,8 @@ int i2o_driver_dispatch(struct i2o_controller *c, u32 m)
} }
if (unlikely(!drv->reply)) { if (unlikely(!drv->reply)) {
osm_debug("%s: Reply to driver %s, but no reply function" osm_debug("%s: Reply to driver %s, but no reply function defined!\n",
" defined!\n", c->name, drv->name); c->name, drv->name);
return -EIO; return -EIO;
} }
......
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