patch-2.3.11 linux/drivers/usb/ohci-hcd.c
Next file: linux/drivers/usb/ohci.c
Previous file: linux/drivers/usb/mouse.c
Back to the patch index
Back to the overall index
- Lines: 45
- Date:
Mon Jul 19 11:17:32 1999
- Orig file:
v2.3.10/linux/drivers/usb/ohci-hcd.c
- Orig date:
Sun Jun 20 18:51:52 1999
diff -u --recursive --new-file v2.3.10/linux/drivers/usb/ohci-hcd.c linux/drivers/usb/ohci-hcd.c
@@ -280,12 +280,44 @@
}
+static void *sohci_alloc_isochronous (struct usb_device *usb_dev, unsigned int pipe, void *data, int len, int maxsze, usb_device_irq completed, void *dev_id)
+{
+ return NULL;
+}
+
+static void sohci_delete_isochronous (struct usb_device *dev, void *_isodesc)
+{
+ return;
+}
+
+static int sohci_sched_isochronous (struct usb_device *usb_dev, void *_isodesc, void *_pisodesc)
+{
+ return USB_ST_NOTSUPPORTED;
+}
+
+static int sohci_unsched_isochronous (struct usb_device *usb_dev, void *_isodesc)
+{
+ return USB_ST_NOTSUPPORTED;
+}
+
+static int sohci_compress_isochronous (struct usb_device *usb_dev, void *_isodesc)
+{
+ return USB_ST_NOTSUPPORTED;
+}
+
+
struct usb_operations sohci_device_operations = {
sohci_usb_allocate,
sohci_usb_deallocate,
sohci_control_msg,
sohci_bulk_msg,
sohci_request_irq,
+ NULL, /* FIXME: should be release_irq/remove_irq */
+ sohci_alloc_isochronous,
+ sohci_delete_isochronous,
+ sohci_sched_isochronous,
+ sohci_unsched_isochronous,
+ sohci_compress_isochronous
};
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)