Commit ba5101d0 authored by Roel Kluin's avatar Roel Kluin Committed by John W. Linville
Browse files

ar9170: wrong test on outlen in ar9170_usb_exec_cmd() ?



remove redundant test: outlen is unsigned

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Acked-by: default avatarChristian Lamparter <chunkeey@web.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 44e1b98f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -350,7 +350,7 @@ static int ar9170_usb_exec_cmd(struct ar9170 *ar, enum ar9170_cmd cmd,
		goto err_unbuf;
	}

	if (outlen >= 0 && aru->readlen != outlen) {
	if (aru->readlen != outlen) {
		err = -EMSGSIZE;
		goto err_unbuf;
	}