carl9170: fix usb anchor wait timeout

usb_wait_anchor_empty_timeout's @timeout
wants milliseconds and not jiffies.

Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by Christian Lamparter and committed by John W. Linville dfa31fef 309075cf

+2 -2
+2 -2
drivers/net/wireless/ath/carl9170/usb.c
··· 553 553 usb_free_urb(urb); 554 554 } 555 555 556 - ret = usb_wait_anchor_empty_timeout(&ar->tx_cmd, HZ); 556 + ret = usb_wait_anchor_empty_timeout(&ar->tx_cmd, 1000); 557 557 if (ret == 0) 558 558 err = -ETIMEDOUT; 559 559 560 560 /* lets wait a while until the tx - queues are dried out */ 561 - ret = usb_wait_anchor_empty_timeout(&ar->tx_anch, HZ); 561 + ret = usb_wait_anchor_empty_timeout(&ar->tx_anch, 1000); 562 562 if (ret == 0) 563 563 err = -ETIMEDOUT; 564 564