<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">ChangeSet 1.1093.2.1, 2003/05/13 12:35:44-07:00, greg@kroah.com

[PATCH] USB: fix jiffies warning in uss720.c


diff -Nru a/drivers/usb/misc/uss720.c b/drivers/usb/misc/uss720.c
--- a/drivers/usb/misc/uss720.c	Wed May 14 12:30:26 2003
+++ b/drivers/usb/misc/uss720.c	Wed May 14 12:30:26 2003
@@ -146,7 +146,7 @@
 	if (m &lt;= ECR_PS2 &amp;&amp; !(priv-&gt;reg[1] &amp; 0x20)) {
 		/* This mode resets the FIFO, so we may
 		 * have to wait for it to drain first. */
-		long expire = jiffies + pp-&gt;physport-&gt;cad-&gt;timeout;
+		unsigned long expire = jiffies + pp-&gt;physport-&gt;cad-&gt;timeout;
 		switch (mode) {
 		case ECR_PPF: /* Parallel Port FIFO mode */
 		case ECR_ECP: /* ECP Parallel Port mode */
</pre></body></html>