Hi Ionut,

On Fri, Nov 5, 2010 at 9:13 AM, Ionut Nicu <ionut.n...@gmail.com> wrote:
> Convert the core module of the tidspbridge driver
> to use struct list_head instead of struct lst_list.
>
> Signed-off-by: Ionut Nicu <ionut.n...@mindbit.ro>

<snip>

> diff --git a/drivers/staging/tidspbridge/core/io_sm.c 
> b/drivers/staging/tidspbridge/core/io_sm.c
> index 194bada..9851f32 100644
> --- a/drivers/staging/tidspbridge/core/io_sm.c
> +++ b/drivers/staging/tidspbridge/core/io_sm.c

<snip>

> @@ -1106,47 +1103,38 @@ static void input_msg(struct io_mgr *pio_mgr, struct 
> msg_mgr *hmsg_mgr)
>                                         * queued.
>                                         */
>                                        (*hmsg_mgr->on_exit) ((void *)
> -                                                          msg_queue_obj->arg,
> -                                                          msg.msg.dw_arg1);
> +                                                       msg_queue_obj->arg,
> +                                                       msg.msg.dw_arg1);
> +                                       break;
> +                               }
> +                               /*
> +                                * Not an exit acknowledgement, queue
> +                                * the message.
> +                                */
> +                               if 
> (!list_empty(&msg_queue_obj->msg_free_list)) {

You are going beyond the 80 chars.

Regards,
Rene

Reply via email to