提交 f32be0c5 编写于 作者: R roel kluin 提交者: Benjamin Herrenschmidt

powerpc/macintosh: Fix wrong test in fan_{read,write}_reg()

Fix error test in fan_{read,write}_reg()
Signed-off-by: NRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
上级 4c4a5cf6
...@@ -443,7 +443,7 @@ static int fan_read_reg(int reg, unsigned char *buf, int nb) ...@@ -443,7 +443,7 @@ static int fan_read_reg(int reg, unsigned char *buf, int nb)
tries = 0; tries = 0;
for (;;) { for (;;) {
nr = i2c_master_recv(fcu, buf, nb); nr = i2c_master_recv(fcu, buf, nb);
if (nr > 0 || (nr < 0 && nr != ENODEV) || tries >= 100) if (nr > 0 || (nr < 0 && nr != -ENODEV) || tries >= 100)
break; break;
msleep(10); msleep(10);
++tries; ++tries;
...@@ -464,7 +464,7 @@ static int fan_write_reg(int reg, const unsigned char *ptr, int nb) ...@@ -464,7 +464,7 @@ static int fan_write_reg(int reg, const unsigned char *ptr, int nb)
tries = 0; tries = 0;
for (;;) { for (;;) {
nw = i2c_master_send(fcu, buf, nb); nw = i2c_master_send(fcu, buf, nb);
if (nw > 0 || (nw < 0 && nw != EIO) || tries >= 100) if (nw > 0 || (nw < 0 && nw != -EIO) || tries >= 100)
break; break;
msleep(10); msleep(10);
++tries; ++tries;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册