i2c: cadence: fixup wait_for_completion_timeout return handling
return type of wait_for_completion_timeout is unsigned long not int. The return variable is renamed to make the timeout condition clearly readable and the type adjusted to unsigned long. Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
bd9dd73c6a
commit
e2efb89768
1 changed files with 3 additions and 3 deletions
|
@ -475,7 +475,7 @@ static void cdns_i2c_master_reset(struct i2c_adapter *adap)
|
||||||
static int cdns_i2c_process_msg(struct cdns_i2c *id, struct i2c_msg *msg,
|
static int cdns_i2c_process_msg(struct cdns_i2c *id, struct i2c_msg *msg,
|
||||||
struct i2c_adapter *adap)
|
struct i2c_adapter *adap)
|
||||||
{
|
{
|
||||||
int ret;
|
unsigned long time_left;
|
||||||
u32 reg;
|
u32 reg;
|
||||||
|
|
||||||
id->p_msg = msg;
|
id->p_msg = msg;
|
||||||
|
@ -501,8 +501,8 @@ static int cdns_i2c_process_msg(struct cdns_i2c *id, struct i2c_msg *msg,
|
||||||
cdns_i2c_msend(id);
|
cdns_i2c_msend(id);
|
||||||
|
|
||||||
/* Wait for the signal of completion */
|
/* Wait for the signal of completion */
|
||||||
ret = wait_for_completion_timeout(&id->xfer_done, adap->timeout);
|
time_left = wait_for_completion_timeout(&id->xfer_done, adap->timeout);
|
||||||
if (!ret) {
|
if (time_left == 0) {
|
||||||
cdns_i2c_master_reset(adap);
|
cdns_i2c_master_reset(adap);
|
||||||
dev_err(id->adap.dev.parent,
|
dev_err(id->adap.dev.parent,
|
||||||
"timeout waiting on completion\n");
|
"timeout waiting on completion\n");
|
||||||
|
|
Loading…
Add table
Reference in a new issue