- don't display debug messages during usb bus scan
authorlaforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede>
Sun, 8 Oct 2006 00:54:35 +0000 (00:54 +0000)
committerlaforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede>
Sun, 8 Oct 2006 00:54:35 +0000 (00:54 +0000)
git-svn-id: https://svn.gnumonks.org/trunk/librfid@1898 e0336214-984f-0b4b-a45f-81c69e1f0ede

src/rfid_reader_openpcd.c

index 053a711..ca2cdff 100644 (file)
@@ -118,11 +118,8 @@ static struct usb_device *find_opcd_device(void)
                struct usb_device *dev;
                for (dev = bus->devices; dev; dev = dev->next) {
                        int i;
-                       printf("usb: %4x:%4x\n", dev->descriptor.idVendor,
-                               dev->descriptor.idProduct);
                        for (i = 0; i < ARRAY_SIZE(opcd_usb_ids); i++) {
                                const struct usb_id *id = &opcd_usb_ids[i];
-                               printf("%x:%x\n", id->vid, id->pid);
                                if (dev->descriptor.idVendor == id->vid &&
                                    dev->descriptor.idProduct == id->pid)
                                        return dev;