Remove the check for the root dev. The required functionality is only

available in recent versions of libusb, and the check isn't really
needed anyway (as the check for vendor and product ID will cover that
as well).


git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@479 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
joerg_wunsch 2005-06-20 18:12:04 +00:00
parent 2d236ed812
commit 888273589d
1 changed files with 0 additions and 3 deletions

View File

@ -101,9 +101,6 @@ static int usbdev_open(char * port, long baud)
for (bus = usb_busses; bus; bus = bus->next)
{
if (bus->root_dev)
continue;
for (dev = bus->devices; dev; dev = dev->next)
{
udev = usb_open(dev);