i2c: sh_mobile: replace break; with if-block

In preparation to remove the do-while-loop.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
Wolfram Sang 2019-01-16 22:05:53 +01:00 committed by Wolfram Sang
parent e659f36d46
commit 0130e3bfa9
1 changed files with 3 additions and 4 deletions

View File

@ -394,11 +394,10 @@ static int sh_mobile_i2c_isr_rx(struct sh_mobile_i2c_data *pd)
break;
}
if (real_pos < 0) {
if (real_pos < 0)
i2c_op(pd, OP_RX_STOP);
break;
}
data = i2c_op(pd, OP_RX_STOP_DATA);
else
data = i2c_op(pd, OP_RX_STOP_DATA);
} else if (real_pos >= 0) {
data = i2c_op(pd, OP_RX);
}