Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

i2c-tiny-usb: Add support for the Robofuzz OSIF USB/I2C converter

Robofuzz OSIF is a generic USB/iIC interface that embeds an ATMega8A
AVR-RISC microcontroler.

The device is based upon Till Harbaum's i2c-tiny-usb and although it
enhances the original design with further functionnalities it still
maintain compatibility with it with respect to the USB/I2C interface.

Signed-off-by: Emmanuel Deloget <logout@free.fr>
Signed-off-by: Jean Delvare <khali@linux-fr.org>

authored by

Emmanuel Deloget and committed by
Jean Delvare
68a7602f d3ff6ce4

+1
+1
drivers/i2c/busses/i2c-tiny-usb.c
··· 143 143 static const struct usb_device_id i2c_tiny_usb_table[] = { 144 144 { USB_DEVICE(0x0403, 0xc631) }, /* FTDI */ 145 145 { USB_DEVICE(0x1c40, 0x0534) }, /* EZPrototypes */ 146 + { USB_DEVICE(0x1964, 0x0001) }, /* Robofuzz OSIF */ 146 147 { } /* Terminating entry */ 147 148 }; 148 149