aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVatika Harlalka <vatikaharlalka@gmail.com>2015-02-19 01:19:16 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-02-26 12:23:58 -0800
commitf0a6fb6624964c9df17e1519d98c6609e7604be9 (patch)
tree62d2d0071a8f6b26420909884bb3a729a8c74b76
parentStaging: i2o: Remove space after the * in a pointer type variable (diff)
downloadlinux-dev-f0a6fb6624964c9df17e1519d98c6609e7604be9.tar.xz
linux-dev-f0a6fb6624964c9df17e1519d98c6609e7604be9.zip
Staging: i2o: Join quoted string split across lines
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>
-rw-r--r--drivers/staging/i2o/driver.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/staging/i2o/driver.c b/drivers/staging/i2o/driver.c
index 111c3edde035..06119bb3eb5f 100644
--- a/drivers/staging/i2o/driver.c
+++ b/drivers/staging/i2o/driver.c
@@ -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;
}