All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] i2c-tiny-usb: Adds supports for the Robofuzz OSIF USB/i2c, converter
@ 2012-07-12  8:16 Emmanuel Deloget
       [not found] ` <4FFE87DB.3030204-HH44TBFINEIAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Emmanuel Deloget @ 2012-07-12  8:16 UTC (permalink / raw)
  To: linux-i2c-u79uwXL29TY76Z2rM5mHXA; +Cc: till-RcHadlBFbzVAfugRpC6u6w

Robofuzz OSIF is a generic USB/i2c 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-GANU6spQydw@public.gmane.org>
---
  drivers/i2c/busses/i2c-tiny-usb.c |    1 +
  1 file changed, 1 insertion(+)

diff --git a/drivers/i2c/busses/i2c-tiny-usb.c b/drivers/i2c/busses/i2c-tiny-usb.c
index f07307f..0510636 100644
--- a/drivers/i2c/busses/i2c-tiny-usb.c
+++ b/drivers/i2c/busses/i2c-tiny-usb.c
@@ -143,6 +143,7 @@ static const struct i2c_algorithm usb_algorithm = {
  static const struct usb_device_id i2c_tiny_usb_table[] = {
  	{ USB_DEVICE(0x0403, 0xc631) },   /* FTDI */
  	{ USB_DEVICE(0x1c40, 0x0534) },   /* EZPrototypes */
+	{ USB_DEVICE(0x1964, 0x0001) },   /* Robofuzz OSIF */
  	{ }                               /* Terminating entry */
  };

-- 
1.7.10

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] i2c-tiny-usb: Adds supports for the Robofuzz OSIF USB/i2c,  converter
       [not found] ` <4FFE87DB.3030204-HH44TBFINEIAvxtiuMwx3w@public.gmane.org>
@ 2012-07-12 12:45   ` Jean Delvare
       [not found]     ` <20120712144505.763542ba-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Jean Delvare @ 2012-07-12 12:45 UTC (permalink / raw)
  To: emmanuel.deloget-HH44TBFINEIAvxtiuMwx3w
  Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, till-RcHadlBFbzVAfugRpC6u6w

Bonjour Emmanuel,

On Thu, 12 Jul 2012 10:16:27 +0200, Emmanuel Deloget wrote:
> Robofuzz OSIF is a generic USB/i2c 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-GANU6spQydw@public.gmane.org>
> ---
>   drivers/i2c/busses/i2c-tiny-usb.c |    1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/i2c/busses/i2c-tiny-usb.c b/drivers/i2c/busses/i2c-tiny-usb.c
> index f07307f..0510636 100644
> --- a/drivers/i2c/busses/i2c-tiny-usb.c
> +++ b/drivers/i2c/busses/i2c-tiny-usb.c
> @@ -143,6 +143,7 @@ static const struct i2c_algorithm usb_algorithm = {
>   static const struct usb_device_id i2c_tiny_usb_table[] = {
>   	{ USB_DEVICE(0x0403, 0xc631) },   /* FTDI */
>   	{ USB_DEVICE(0x1c40, 0x0534) },   /* EZPrototypes */
> +	{ USB_DEVICE(0x1964, 0x0001) },   /* Robofuzz OSIF */
>   	{ }                               /* Terminating entry */
>   };
> 

Somwhere along the way the patch format was altered, it doesn't apply.
Care to fix that and resubmit?

-- 
Jean Delvare

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] i2c-tiny-usb: Adds supports for the Robofuzz OSIF USB/i2c, converter
       [not found]     ` <20120712144505.763542ba-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
@ 2012-07-12 13:55       ` Emmanuel Deloget
  2012-07-12 14:23       ` [PATCH v2] " Emmanuel Deloget
  1 sibling, 0 replies; 5+ messages in thread
From: Emmanuel Deloget @ 2012-07-12 13:55 UTC (permalink / raw)
  To: Jean Delvare
  Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, till-RcHadlBFbzVAfugRpC6u6w

Hello, 

Le 12/07/2012 14:45, Jean Delvare a écrit :
> Bonjour Emmanuel,
> 
> Somewhere along the way the patch format was altered, it doesn't apply.
> Care to fix that and resubmit?
> 

Weird - and thanks for the info. I don't know where these additional space
characters come from. I guess it has something to do with my user agent
setup.

I'll give it a new try, after I change my mail client settings a bit. You
should get it in a few minutes. 

best regards, 

-- Emmanuel Deloget

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2] i2c-tiny-usb: Adds supports for the Robofuzz OSIF USB/i2c, converter
       [not found]     ` <20120712144505.763542ba-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
  2012-07-12 13:55       ` Emmanuel Deloget
@ 2012-07-12 14:23       ` Emmanuel Deloget
       [not found]         ` <4FFEDDFB.5060804-HH44TBFINEIAvxtiuMwx3w@public.gmane.org>
  1 sibling, 1 reply; 5+ messages in thread
From: Emmanuel Deloget @ 2012-07-12 14:23 UTC (permalink / raw)
  To: Jean Delvare
  Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, till-RcHadlBFbzVAfugRpC6u6w

>From 05a377ace178355546ac991b105a7905d1f28e37 Mon Sep 17 00:00:00 2001
From: Emmanuel Deloget <logout-GANU6spQydw@public.gmane.org>
Date: Thu, 12 Jul 2012 16:00:30 +0200
Subject: [PATCH] i2c-tiny-usb: Adds supports for the Robofuzz OSIF USB/i2c converter

Robofuzz OSIF is a generic USB/i2c 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-GANU6spQydw@public.gmane.org>
---
 drivers/i2c/busses/i2c-tiny-usb.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/i2c/busses/i2c-tiny-usb.c b/drivers/i2c/busses/i2c-tiny-usb.c
index f07307f..0510636 100644
--- a/drivers/i2c/busses/i2c-tiny-usb.c
+++ b/drivers/i2c/busses/i2c-tiny-usb.c
@@ -143,6 +143,7 @@ static const struct i2c_algorithm usb_algorithm = {
 static const struct usb_device_id i2c_tiny_usb_table[] = {
 	{ USB_DEVICE(0x0403, 0xc631) },   /* FTDI */
 	{ USB_DEVICE(0x1c40, 0x0534) },   /* EZPrototypes */
+	{ USB_DEVICE(0x1964, 0x0001) },   /* Robofuzz OSIF */
 	{ }                               /* Terminating entry */
 };
 
-- 
1.7.10

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] i2c-tiny-usb: Adds supports for the Robofuzz OSIF USB/i2c,   converter
       [not found]         ` <4FFEDDFB.5060804-HH44TBFINEIAvxtiuMwx3w@public.gmane.org>
@ 2012-07-12 14:44           ` Jean Delvare
  0 siblings, 0 replies; 5+ messages in thread
From: Jean Delvare @ 2012-07-12 14:44 UTC (permalink / raw)
  To: emmanuel.deloget-HH44TBFINEIAvxtiuMwx3w
  Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, Till Harbaum

On Thu, 12 Jul 2012 16:23:55 +0200, Emmanuel Deloget wrote:
> From 05a377ace178355546ac991b105a7905d1f28e37 Mon Sep 17 00:00:00 2001
> From: Emmanuel Deloget <logout-GANU6spQydw@public.gmane.org>
> Date: Thu, 12 Jul 2012 16:00:30 +0200
> Subject: [PATCH] i2c-tiny-usb: Adds supports for the Robofuzz OSIF USB/i2c converter
> 
> Robofuzz OSIF is a generic USB/i2c 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-GANU6spQydw@public.gmane.org>
> ---
>  drivers/i2c/busses/i2c-tiny-usb.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/i2c/busses/i2c-tiny-usb.c b/drivers/i2c/busses/i2c-tiny-usb.c
> index f07307f..0510636 100644
> --- a/drivers/i2c/busses/i2c-tiny-usb.c
> +++ b/drivers/i2c/busses/i2c-tiny-usb.c
> @@ -143,6 +143,7 @@ static const struct i2c_algorithm usb_algorithm = {
>  static const struct usb_device_id i2c_tiny_usb_table[] = {
>  	{ USB_DEVICE(0x0403, 0xc631) },   /* FTDI */
>  	{ USB_DEVICE(0x1c40, 0x0534) },   /* EZPrototypes */
> +	{ USB_DEVICE(0x1964, 0x0001) },   /* Robofuzz OSIF */
>  	{ }                               /* Terminating entry */
>  };
>  

Applied, thanks.

-- 
Jean Delvare

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-07-12 14:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-12  8:16 [PATCH] i2c-tiny-usb: Adds supports for the Robofuzz OSIF USB/i2c, converter Emmanuel Deloget
     [not found] ` <4FFE87DB.3030204-HH44TBFINEIAvxtiuMwx3w@public.gmane.org>
2012-07-12 12:45   ` Jean Delvare
     [not found]     ` <20120712144505.763542ba-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
2012-07-12 13:55       ` Emmanuel Deloget
2012-07-12 14:23       ` [PATCH v2] " Emmanuel Deloget
     [not found]         ` <4FFEDDFB.5060804-HH44TBFINEIAvxtiuMwx3w@public.gmane.org>
2012-07-12 14:44           ` Jean Delvare

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.