[media] ti-vpe: Fix typecast
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Wed, 24 Sep 2014 22:22:20 +0000 (19:22 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 26 Sep 2014 09:50:58 +0000 (06:50 -0300)
Addresses have the same size of unsigned long, and not u32.

That removes a warning on 64 bits compilation:
drivers/media//platform/ti-vpe/vpdma.c:332:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  WARN_ON(((u32) buf->addr & VPDMA_DESC_ALIGN) != 0);
           ^
include/asm-generic/bug.h:86:25: note: in definition of macro ‘WARN_ON’
  int __ret_warn_on = !!(condition);    \
                         ^

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/ti-vpe/vpdma.c

index 684ba19bbedd8d1aa992b57cfb4c85888390e749..3e2e3a33e6ed850e4ceccd223f90f1c4eb956875 100644 (file)
@@ -329,7 +329,7 @@ int vpdma_alloc_desc_buf(struct vpdma_buf *buf, size_t size)
        if (!buf->addr)
                return -ENOMEM;
 
-       WARN_ON(((u32) buf->addr & VPDMA_DESC_ALIGN) != 0);
+       WARN_ON(((unsigned long)buf->addr & VPDMA_DESC_ALIGN) != 0);
 
        return 0;
 }
This page took 0.037228 seconds and 5 git commands to generate.