Fix the namespace issue that causes this warning:

drivers/media/platform/exynos4-is/mipi-csis.c:709:17: warning: incorrect type 
in argument 2 (different address spaces)
drivers/media/platform/exynos4-is/mipi-csis.c:709:17:    expected void const 
*<noident>
drivers/media/platform/exynos4-is/mipi-csis.c:709:17:    got void [noderef] 
<asn:2>*

Signed-off-by: Mauro Carvalho Chehab <mche...@osg.samsung.com>

diff --git a/drivers/media/platform/exynos4-is/mipi-csis.c 
b/drivers/media/platform/exynos4-is/mipi-csis.c
index d74e1bec3d86..4b85105dc159 100644
--- a/drivers/media/platform/exynos4-is/mipi-csis.c
+++ b/drivers/media/platform/exynos4-is/mipi-csis.c
@@ -706,7 +706,8 @@ static irqreturn_t s5pcsis_irq_handler(int irq, void 
*dev_id)
                else
                        offset = S5PCSIS_PKTDATA_ODD;
 
-               memcpy(pktbuf->data, state->regs + offset, pktbuf->len);
+               memcpy(pktbuf->data, (u8 __force *)state->regs + offset,
+                      pktbuf->len);
                pktbuf->data = NULL;
                rmb();
        }
-- 
2.4.3


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

Reply via email to