Re: [PATCH] staging: tidspbridge: use the right type for list_is_last

2010-12-13 Thread Ramirez Luna, Omar
On Sun, Dec 12, 2010 at 6:02 AM, Laurent Pinchart
laurent.pinch...@ideasonboard.com wrote:
 Hi Omar,

 On Wednesday 08 December 2010 23:20:23 Omar Ramirez Luna wrote:
 Removes the following warning:

   CC [M]  drivers/staging/tidspbridge/rmgr/rmm.o
 drivers/staging/tidspbridge/rmgr/rmm.c: In function 'rmm_alloc':
 drivers/staging/tidspbridge/rmgr/rmm.c:147: warning: passing
       argument 1 of 'list_is_last' from incompatible pointer type
 include/linux/list.h:170: note: expected 'const struct list_head *'
       but argument is of type 'struct rmm_ovly_sect *'

 I was about to send the same patch.

 Signed-off-by: Omar Ramirez Luna omar.rami...@ti.com

 Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com

Great, thanks Laurent, Ionut for the review.

Regards,

Omar
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] staging: tidspbridge: use the right type for list_is_last

2010-12-12 Thread Laurent Pinchart
Hi Omar,

On Wednesday 08 December 2010 23:20:23 Omar Ramirez Luna wrote:
 Removes the following warning:
 
   CC [M]  drivers/staging/tidspbridge/rmgr/rmm.o
 drivers/staging/tidspbridge/rmgr/rmm.c: In function 'rmm_alloc':
 drivers/staging/tidspbridge/rmgr/rmm.c:147: warning: passing
   argument 1 of 'list_is_last' from incompatible pointer type
 include/linux/list.h:170: note: expected 'const struct list_head *'
   but argument is of type 'struct rmm_ovly_sect *'

I was about to send the same patch.

 Signed-off-by: Omar Ramirez Luna omar.rami...@ti.com

Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com

-- 
Regards,

Laurent Pinchart
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] staging: tidspbridge: use the right type for list_is_last

2010-12-12 Thread Ionut Nicu
Hi Omar,

On Wed, 2010-12-08 at 16:20 -0600, Omar Ramirez Luna wrote:
 Removes the following warning:
 
   CC [M]  drivers/staging/tidspbridge/rmgr/rmm.o
 drivers/staging/tidspbridge/rmgr/rmm.c: In function 'rmm_alloc':
 drivers/staging/tidspbridge/rmgr/rmm.c:147: warning: passing
   argument 1 of 'list_is_last' from incompatible pointer type
 include/linux/list.h:170: note: expected 'const struct list_head *'
   but argument is of type 'struct rmm_ovly_sect *'
 
 Signed-off-by: Omar Ramirez Luna omar.rami...@ti.com
 ---
  drivers/staging/tidspbridge/rmgr/rmm.c |2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)
 
 diff --git a/drivers/staging/tidspbridge/rmgr/rmm.c 
 b/drivers/staging/tidspbridge/rmgr/rmm.c
 index aae8657..5a3f09c 100644
 --- a/drivers/staging/tidspbridge/rmgr/rmm.c
 +++ b/drivers/staging/tidspbridge/rmgr/rmm.c
 @@ -144,7 +144,7 @@ int rmm_alloc(struct rmm_target_obj *target, u32 segid, 
 u32 size,
   new_sect-addr = addr;
   new_sect-size = size;
   new_sect-page = segid;
 - if (list_is_last(sect, target-ovly_list))
 + if (list_is_last(sect-list_elem, target-ovly_list))
   /* Put new section at the end of the list */
   list_add_tail(new_sect-list_elem,
   target-ovly_list);


Sorry, I added this warning by mistake, so ...

Acked-by: Ionut Nicu ionut.n...@mindbit.ro

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] staging: tidspbridge: use the right type for list_is_last

2010-12-08 Thread Omar Ramirez Luna
Removes the following warning:

  CC [M]  drivers/staging/tidspbridge/rmgr/rmm.o
drivers/staging/tidspbridge/rmgr/rmm.c: In function 'rmm_alloc':
drivers/staging/tidspbridge/rmgr/rmm.c:147: warning: passing
argument 1 of 'list_is_last' from incompatible pointer type
include/linux/list.h:170: note: expected 'const struct list_head *'
but argument is of type 'struct rmm_ovly_sect *'

Signed-off-by: Omar Ramirez Luna omar.rami...@ti.com
---
 drivers/staging/tidspbridge/rmgr/rmm.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/tidspbridge/rmgr/rmm.c 
b/drivers/staging/tidspbridge/rmgr/rmm.c
index aae8657..5a3f09c 100644
--- a/drivers/staging/tidspbridge/rmgr/rmm.c
+++ b/drivers/staging/tidspbridge/rmgr/rmm.c
@@ -144,7 +144,7 @@ int rmm_alloc(struct rmm_target_obj *target, u32 segid, u32 
size,
new_sect-addr = addr;
new_sect-size = size;
new_sect-page = segid;
-   if (list_is_last(sect, target-ovly_list))
+   if (list_is_last(sect-list_elem, target-ovly_list))
/* Put new section at the end of the list */
list_add_tail(new_sect-list_elem,
target-ovly_list);
-- 
1.7.1

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html