diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-02-15 22:52:37 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-02-15 22:52:37 +0100 |
commit | 3e527f54331db2896ca1a60247a96830f6ca79e1 (patch) | |
tree | 04d2c055bb4f32185cdafe5550198e0f1f95bc27 /debian/patches/0130-usb-timeout.patch | |
parent | ab0254d049c7f870a0cf4971a310166271181e87 (diff) |
Remove unused files and patches
Diffstat (limited to 'debian/patches/0130-usb-timeout.patch')
-rw-r--r-- | debian/patches/0130-usb-timeout.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/debian/patches/0130-usb-timeout.patch b/debian/patches/0130-usb-timeout.patch deleted file mode 100644 index 284d3cf..0000000 --- a/debian/patches/0130-usb-timeout.patch +++ /dev/null @@ -1,30 +0,0 @@ -Description: Add timeout before usb bulk write -Author: Steve Graham <bugs@annaghvarn.plus.com> -Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810919 -Forwarded: https://alioth.debian.org/tracker/index.php?func=detail&aid=315288&group_id=30186&atid=410366 -Last-Update: 2016-01-25 ---- -This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ -Index: trunk/sanei/sanei_usb.c -=================================================================== ---- trunk.orig/sanei/sanei_usb.c -+++ trunk/sanei/sanei_usb.c -@@ -2411,6 +2411,10 @@ SANE_Status - sanei_usb_write_bulk (SANE_Int dn, const SANE_Byte * buffer, size_t * size) - { - ssize_t write_size = 0; -+ struct timespec sleepytime, sleepyremain; -+ -+ sleepytime.tv_nsec = 50000L; /* nanoseconds */ -+ sleepytime.tv_sec = 0; - - if (!size) - { -@@ -2439,6 +2443,7 @@ sanei_usb_write_bulk (SANE_Int dn, const - else if (devices[dn].method == sanei_usb_method_libusb) - #ifdef HAVE_LIBUSB - { -+ nanosleep(&sleepytime, &sleepyremain); /* sg */ - if (devices[dn].bulk_out_ep) - { - write_size = usb_bulk_write (devices[dn].libusb_handle, |