Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

USB: host: whci: remove redundant variable t

Variable t is being assigned but is never used hence it is
redundant and can be removed.

Cleans up clang warning:
warning: variable 't' set but not used [-Wunused-but-set-variable]

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Colin Ian King and committed by
Greg Kroah-Hartman
bebee48e 6c7dbe36

-2
-2
drivers/usb/host/whci/pzl.c
··· 96 96 97 97 while (qset->ntds) { 98 98 struct whc_qtd *td; 99 - int t; 100 99 101 - t = qset->td_start; 102 100 td = &qset->qtd[qset->td_start]; 103 101 status = le32_to_cpu(td->status); 104 102