X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fjtag%2Fdrivers%2Flibusb1_common.h;h=7c73d29a417309af2deb7ef7fe561e7ee28a1c23;hb=3117a318d42606cbcfd39559e144f6f6b0313fe9;hp=4ef6bf730d0faf14c4a62cd259f49f1ea6ebf85a;hpb=487c57d9a27244b6a916cce253d8aaaec5e22604;p=openocd.git diff --git a/src/jtag/drivers/libusb1_common.h b/src/jtag/drivers/libusb1_common.h index 4ef6bf730d..7c73d29a41 100644 --- a/src/jtag/drivers/libusb1_common.h +++ b/src/jtag/drivers/libusb1_common.h @@ -14,13 +14,11 @@ * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * + * along with this program. If not, see . * ***************************************************************************/ -#ifndef JTAG_LIBUSB_COMMON_H -#define JTAG_LIBUSB_COMMON_H +#ifndef OPENOCD_JTAG_DRIVERS_LIBUSB1_COMMON_H +#define OPENOCD_JTAG_DRIVERS_LIBUSB1_COMMON_H #include @@ -71,12 +69,13 @@ int jtag_libusb_set_configuration(jtag_libusb_device_handle *devh, * @param bclass `bInterfaceClass` to match, or -1 to ignore this field. * @param subclass `bInterfaceSubClass` to match, or -1 to ignore this field. * @param protocol `bInterfaceProtocol` to match, or -1 to ignore this field. + * @param trans_type `bmAttributes Bits 0..1 Transfer type` to match, or -1 to ignore this field. * @returns Returns ERROR_OK on success, ERROR_FAIL otherwise. */ int jtag_libusb_choose_interface(struct jtag_libusb_device_handle *devh, unsigned int *usb_read_ep, unsigned int *usb_write_ep, - int bclass, int subclass, int protocol); + int bclass, int subclass, int protocol, int trans_type); int jtag_libusb_get_pid(struct jtag_libusb_device *dev, uint16_t *pid); -#endif /* JTAG_USB_COMMON_H */ +#endif /* OPENOCD_JTAG_DRIVERS_LIBUSB1_COMMON_H */