summaryrefslogtreecommitdiff
path: root/drivers/staging/tidspbridge
diff options
context:
space:
mode:
authorOmar Ramirez Luna <omar.ramirez@ti.com>2010-12-08 22:20:23 +0000
committerOmar Ramirez Luna <omar.ramirez@ti.com>2011-02-04 20:11:47 -0600
commita994b051b6cb246bb8843b3fbb7dea4185a01399 (patch)
tree5ba09e4a7572b1260c3103e9b0ae68a8c6b33c38 /drivers/staging/tidspbridge
parentba44df6f8875c0e56d5923d742face59d81b8dc7 (diff)
staging: tidspbridge: use the right type for list_is_last
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.ramirez@ti.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Ionut Nicu <ionut.nicu@mindbit.ro>
Diffstat (limited to 'drivers/staging/tidspbridge')
-rw-r--r--drivers/staging/tidspbridge/rmgr/rmm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/tidspbridge/rmgr/rmm.c b/drivers/staging/tidspbridge/rmgr/rmm.c
index aae86570035b..5a3f09c4574f 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);