[PATCH] i2c: fix adapter_list manipulation

Baruch Siach baruch at tkos.co.il
Tue Jun 15 01:12:35 EDT 2010


Hi barebox list,

Ping?
This seems to fix an obvious bug.

baruch

On Tue, Jun 08, 2010 at 09:36:04PM +0300, Baruch Siach wrote:
> Signed-off-by: Baruch Siach <baruch at tkos.co.il>
> ---
>  drivers/i2c/i2c.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/i2c/i2c.c b/drivers/i2c/i2c.c
> index 1fa114a..87360f3 100644
> --- a/drivers/i2c/i2c.c
> +++ b/drivers/i2c/i2c.c
> @@ -365,7 +365,7 @@ int i2c_add_numbered_adapter(struct i2c_adapter *adapter)
>  	if (i2c_get_adapter(adapter->nr))
>  		return -EBUSY;
>  
> -	list_add_tail(&adapter_list, &adapter->list);
> +	list_add_tail(&adapter->list, &adapter_list);
>  
>  	/* populate children from any i2c device tables */
>  	scan_boardinfo(adapter);
> -- 
> 1.7.1
> 

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -



More information about the barebox mailing list