kodak1400: Add (commented-out) definitions for the Kodak 805.

This commit is contained in:
Solomon Peachy 2013-06-27 22:47:02 -04:00
parent 736cedd17e
commit 1336a7feda
1 changed files with 7 additions and 1 deletions

View File

@ -73,6 +73,7 @@
/* USB Identifiers */
#define USB_VID_KODAK 0x040A
#define USB_PID_KODAK_1400 0x4022
#define USB_PID_KODAK_805 0x4034
/* Program states */
enum {
@ -187,9 +188,14 @@ static int find_and_enumerate(struct libusb_context *ctx,
continue;
switch(desc.idProduct) {
case USB_PID_KODAK_1400: // "Kodak 1400"
case USB_PID_KODAK_1400:
found = i;
break;
#if 0
case USB_PID_KODAK_805:
found = i;
break;
#endif
default:
continue;
}