提交 6a0c0d0d 编写于 作者: P Peter Rosin 提交者: Wolfram Sang

i2c: robotfuzz-osif: drop pointless test

In the for-loop test, ret will be either 0 or 1. So, the
comparison is pointless. Drop it, and drop the initializer
which is then also pointless.
Signed-off-by: NPeter Rosin <peda@axentia.se>
Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
上级 7fb29b95
...@@ -62,10 +62,10 @@ static int osif_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, ...@@ -62,10 +62,10 @@ static int osif_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs,
{ {
struct osif_priv *priv = adapter->algo_data; struct osif_priv *priv = adapter->algo_data;
struct i2c_msg *pmsg; struct i2c_msg *pmsg;
int ret = 0; int ret;
int i; int i;
for (i = 0; ret >= 0 && i < num; i++) { for (i = 0; i < num; i++) {
pmsg = &msgs[i]; pmsg = &msgs[i];
if (pmsg->flags & I2C_M_RD) { if (pmsg->flags & I2C_M_RD) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册