Fix up backends for new transfer completion API.
authorChris Dickens <christopher.a.dickens@gmail.com>
Wed, 21 Jan 2015 06:58:04 +0000 (22:58 -0800)
committerChris Dickens <christopher.a.dickens@gmail.com>
Wed, 21 Jan 2015 06:58:04 +0000 (22:58 -0800)
Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
libusb/os/haiku/haiku_usb_raw.cpp
libusb/os/netbsd_usb.c
libusb/os/openbsd_usb.c
libusb/os/wince_usb.c
libusb/os/windows_usb.c
libusb/version_nano.h

index 2a8f478..eedcacb 100644 (file)
@@ -254,6 +254,7 @@ const struct usbi_os_backend haiku_usb_raw_backend = {
        /*.clear_transfer_priv =*/ haiku_clear_transfer_priv,
 
        /*.handle_events =*/ haiku_handle_events,
+       /*.handle_transfer_completion =*/ NULL,
 
        /*.clock_gettime =*/ haiku_clock_gettime,
 
index eaac21c..0e45317 100644 (file)
@@ -127,6 +127,7 @@ const struct usbi_os_backend netbsd_backend = {
        netbsd_clear_transfer_priv,
 
        netbsd_handle_events,
+       NULL,                           /* handle_transfer_completion() */
 
        netbsd_clock_gettime,
        sizeof(struct device_priv),
index 93dfda1..1b96f34 100644 (file)
@@ -130,6 +130,7 @@ const struct usbi_os_backend openbsd_backend = {
        obsd_clear_transfer_priv,
 
        obsd_handle_events,
+       NULL,                           /* handle_transfer_completion() */
 
        obsd_clock_gettime,
        sizeof(struct device_priv),
index fa8389c..875cc87 100644 (file)
@@ -1023,6 +1023,7 @@ const struct usbi_os_backend wince_backend = {
         wince_clear_transfer_priv,
 
         wince_handle_events,
+        NULL,                           /* handle_transfer_completion() */
 
         wince_clock_gettime,
         sizeof(struct wince_device_priv),
index b302b59..f100759 100644 (file)
@@ -2488,6 +2488,7 @@ const struct usbi_os_backend windows_backend = {
        windows_clear_transfer_priv,
 
        windows_handle_events,
+       NULL,                           /* handle_transfer_completion() */
 
        windows_clock_gettime,
 #if defined(USBI_TIMERFD_AVAILABLE)
index 1006d74..70d5df1 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 10950
+#define LIBUSB_NANO 10951