Xiaofan Chen <xiaofanc@gmail.com> retire obsolete patch. OpenOCD only supports 0...
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Sun, 12 Jul 2009 19:31:13 +0000 (19:31 +0000)
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Sun, 12 Jul 2009 19:31:13 +0000 (19:31 +0000)
git-svn-id: svn://svn.berlios.de/openocd/trunk@2511 b42882b7-edfa-0310-969c-e2dbd0fdcd60

contrib/libftdi/README [deleted file]
contrib/libftdi/libftdi-0.12_win32.patch [deleted file]

diff --git a/contrib/libftdi/README b/contrib/libftdi/README
deleted file mode 100644 (file)
index 475c4e5..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-libftdi can be built to work under win32 (cygwin/mingw) after applying the patch in this directory.
-
-The issue is caused by windows requiring usb_set_configuration to be called before the usb_claim_interface.
-
-Spen
-spen@spen-soft.co.uk
-
diff --git a/contrib/libftdi/libftdi-0.12_win32.patch b/contrib/libftdi/libftdi-0.12_win32.patch
deleted file mode 100644 (file)
index 426523c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/ftdi.c.orig    Wed Apr 16 16:24:30 2008
-+++ src/ftdi.c Thu May 01 20:19:46 2008
-@@ -358,6 +358,17 @@
-     if (usb_detach_kernel_driver_np(ftdi->usb_dev, ftdi->interface) != 0 && errno != ENODATA)
-         detach_errno = errno;
- #endif
-+
-+#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
-+      if (usb_set_configuration(ftdi->usb_dev, 1) != 0) {
-+              usb_close (ftdi->usb_dev);
-+        if (detach_errno == EPERM) {
-+            ftdi_error_return(-8, "inappropriate permissions on device!");
-+        } else {
-+            ftdi_error_return(-5, "unable to set configuration");
-+        }
-+      }
-+#endif
-     if (usb_claim_interface(ftdi->usb_dev, ftdi->interface) != 0) {
-         usb_close (ftdi->usb_dev);