From b8a82a1ff4ed0b0f0d408f0540572ee01741102c Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Mon, 16 Jan 2012 15:26:01 +0100 Subject: [PATCH] Revert "Fixes the three open methods of the cpp wrapper that do not get an usb-device parameter as they have never really worked yet." This reverts commit 80d3cf70870aa4d1c8125bdf7ca00552b8a1ab57. Old version of the fix - not supposed to be commited. --- ftdipp/ftdi.cpp | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/ftdipp/ftdi.cpp b/ftdipp/ftdi.cpp index 5868405..8511a91 100644 --- a/ftdipp/ftdi.cpp +++ b/ftdipp/ftdi.cpp @@ -85,8 +85,6 @@ int Context::open(int vendor, int product) if (ret < 0) return ret; - d->dev = usb_device(d->ftdi->usb_dev); - return get_strings_and_reopen(); } @@ -106,8 +104,6 @@ int Context::open(int vendor, int product, const std::string& description, const if (ret < 0) return ret; - d->dev = usb_device(d->ftdi->usb_dev); - return get_strings_and_reopen(); } @@ -118,8 +114,6 @@ int Context::open(const std::string& description) if (ret < 0) return ret; - d->dev = usb_device(d->ftdi->usb_dev); - return get_strings_and_reopen(); } -- 1.7.1