From: Greg Kroah-Hartman Date: Wed, 29 Apr 2015 14:21:59 +0000 (+0200) Subject: Staging: iop.c: move assignment out of if () block X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d9ca7e929d0825984873c2dd3e0bd9fda82e44be;p=linux-beck.git Staging: iop.c: move assignment out of if () block We should not be doing assignments within an if () block so fix up the code to not do this. change was created using Coccinelle. CC: Supriya Karanth CC: Somya Anand CC: Alan Cox Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/i2o/iop.c b/drivers/staging/i2o/iop.c index 23bdbe4aa480..142aab8c7738 100644 --- a/drivers/staging/i2o/iop.c +++ b/drivers/staging/i2o/iop.c @@ -300,7 +300,8 @@ static int i2o_iop_quiesce(struct i2o_controller *c) ADAPTER_TID); /* Long timeout needed for quiesce if lots of devices */ - if ((rc = i2o_msg_post_wait(c, msg, 240))) + rc = i2o_msg_post_wait(c, msg, 240); + if (rc) osm_info("%s: Unable to quiesce (status=%#x).\n", c->name, -rc); else osm_debug("%s: Quiesced.\n", c->name); @@ -340,7 +341,8 @@ static int i2o_iop_enable(struct i2o_controller *c) ADAPTER_TID); /* How long of a timeout do we need? */ - if ((rc = i2o_msg_post_wait(c, msg, 240))) + rc = i2o_msg_post_wait(c, msg, 240); + if (rc) osm_err("%s: Could not enable (status=%#x).\n", c->name, -rc); else osm_debug("%s: Enabled.\n", c->name); @@ -406,7 +408,8 @@ static int i2o_iop_clear(struct i2o_controller *c) cpu_to_le32(I2O_CMD_ADAPTER_CLEAR << 24 | HOST_TID << 12 | ADAPTER_TID); - if ((rc = i2o_msg_post_wait(c, msg, 30))) + rc = i2o_msg_post_wait(c, msg, 30); + if (rc) osm_info("%s: Unable to clear (status=%#x).\n", c->name, -rc); else osm_debug("%s: Cleared.\n", c->name);