提交 ba5101d0 编写于 作者: R Roel Kluin 提交者: John W. Linville

ar9170: wrong test on outlen in ar9170_usb_exec_cmd() ?

remove redundant test: outlen is unsigned
Signed-off-by: NRoel Kluin <roel.kluin@gmail.com>
Acked-by: NChristian Lamparter <chunkeey@web.de>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 44e1b98f
...@@ -350,7 +350,7 @@ static int ar9170_usb_exec_cmd(struct ar9170 *ar, enum ar9170_cmd cmd, ...@@ -350,7 +350,7 @@ static int ar9170_usb_exec_cmd(struct ar9170 *ar, enum ar9170_cmd cmd,
goto err_unbuf; goto err_unbuf;
} }
if (outlen >= 0 && aru->readlen != outlen) { if (aru->readlen != outlen) {
err = -EMSGSIZE; err = -EMSGSIZE;
goto err_unbuf; goto err_unbuf;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册