patch-2.3.29 linux/drivers/usb/proc_usb.c
Next file: linux/drivers/usb/uhci.c
Previous file: linux/drivers/usb/hp_scanner.c
Back to the patch index
Back to the overall index
- Lines: 80
- Date:
Fri Nov 19 14:46:56 1999
- Orig file:
v2.3.28/linux/drivers/usb/proc_usb.c
- Orig date:
Thu Nov 11 20:11:49 1999
diff -u --recursive --new-file v2.3.28/linux/drivers/usb/proc_usb.c linux/drivers/usb/proc_usb.c
@@ -2,6 +2,7 @@
* drivers/usb/proc_usb.c
* (C) Copyright 1999 Randy Dunlap.
* (C) Copyright 1999 Thomas Sailer <sailer@ife.ee.ethz.ch>. (proc file per device)
+ * (C) Copyright 1999 Deti Fliegl (new USB architecture)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -591,7 +592,7 @@
free_page((unsigned long)tbuf);
return -EINVAL;
}
- i = dev->bus->op->bulk_msg(dev, pipe, tbuf, len1, &len2, (ctrl.timeout * HZ + 500) / 1000);
+ i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, (ctrl.timeout * HZ + 500) / 1000);
if (!i && len2) {
copy_to_user_ret(bulk.data, tbuf, len2, -EFAULT);
}
@@ -599,7 +600,7 @@
if (len1) {
copy_from_user_ret(tbuf, bulk.data, len1, -EFAULT);
}
- i = dev->bus->op->bulk_msg(dev, pipe, tbuf, len1, &len2, (ctrl.timeout * HZ + 500) / 1000);
+ i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, (ctrl.timeout * HZ + 500) / 1000);
}
free_page((unsigned long)tbuf);
if (i) {
@@ -670,7 +671,7 @@
free_page((unsigned long)tbuf);
return -EINVAL;
}
- i = dev->bus->op->bulk_msg(dev, pipe, tbuf, len1, &len2, HZ*5);
+ i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, HZ*5);
if (!i && len2) {
copy_to_user_ret(obulk.data, tbuf, len2, -EFAULT);
}
@@ -678,7 +679,7 @@
if (len1) {
copy_from_user_ret(tbuf, obulk.data, len1, -EFAULT);
}
- i = dev->bus->op->bulk_msg(dev, pipe, tbuf, len1, &len2, HZ*5);
+ i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, HZ*5);
}
free_page((unsigned long)tbuf);
if (i) {
@@ -804,7 +805,7 @@
free_page((unsigned long)tbuf);
return -EINVAL;
}
- i = dev->bus->op->bulk_msg(dev, pipe, tbuf, len1, &len2, (bulk.timeout * HZ + 500) / 1000);
+ i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, (bulk.timeout * HZ + 500) / 1000);
if (!i && len2) {
copy_to_user_ret(bulk.data, tbuf, len2, -EFAULT);
}
@@ -812,7 +813,7 @@
if (len1) {
copy_from_user_ret(tbuf, bulk.data, len1, -EFAULT);
}
- i = dev->bus->op->bulk_msg(dev, pipe, tbuf, len1, &len2, (bulk.timeout * HZ + 500) / 1000);
+ i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, (bulk.timeout * HZ + 500) / 1000);
}
free_page((unsigned long)tbuf);
if (i) {
@@ -877,7 +878,7 @@
free_page((unsigned long)tbuf);
return -EINVAL;
}
- i = dev->bus->op->bulk_msg(dev, pipe, tbuf, len1, &len2, HZ*5);
+ i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, HZ*5);
if (!i && len2) {
copy_to_user_ret(obulk.data, tbuf, len2, -EFAULT);
}
@@ -885,7 +886,7 @@
if (len1) {
copy_from_user_ret(tbuf, obulk.data, len1, -EFAULT);
}
- i = dev->bus->op->bulk_msg(dev, pipe, tbuf, len1, &len2, HZ*5);
+ i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, HZ*5);
}
free_page((unsigned long)tbuf);
if (i) {
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)