bbc_i2c: Remove unneeded err variable
Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f0a4cf3101
commit
e410471029
|
@ -233,13 +233,9 @@ int bbc_i2c_write_buf(struct bbc_i2c_client *client,
|
|||
int ret = 0;
|
||||
|
||||
while (len > 0) {
|
||||
int err = bbc_i2c_writeb(client, *buf, off);
|
||||
|
||||
if (err < 0) {
|
||||
ret = err;
|
||||
ret = bbc_i2c_writeb(client, *buf, off);
|
||||
if (ret < 0)
|
||||
break;
|
||||
}
|
||||
|
||||
len--;
|
||||
buf++;
|
||||
off++;
|
||||
|
@ -253,11 +249,9 @@ int bbc_i2c_read_buf(struct bbc_i2c_client *client,
|
|||
int ret = 0;
|
||||
|
||||
while (len > 0) {
|
||||
int err = bbc_i2c_readb(client, buf, off);
|
||||
if (err < 0) {
|
||||
ret = err;
|
||||
ret = bbc_i2c_readb(client, buf, off);
|
||||
if (ret < 0)
|
||||
break;
|
||||
}
|
||||
len--;
|
||||
buf++;
|
||||
off++;
|
||||
|
|
Loading…
Reference in New Issue