Commit 5631a7d7 authored by Sachin Kamat's avatar Sachin Kamat Committed by Mauro Carvalho Chehab

[media] exynos-gsc: Fix compilation warning

Used type casting to avoid the following compilation warning:
drivers/media/platform/exynos-gsc/gsc-core.c:983:37: warning:
incorrect type in assignment (different modifiers)
drivers/media/platform/exynos-gsc/gsc-core.c:983:37:
expected struct gsc_driverdata *driver_data
drivers/media/platform/exynos-gsc/gsc-core.c:983:37:
got void const *data
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent e1393b59
...@@ -980,7 +980,7 @@ static void *gsc_get_drv_data(struct platform_device *pdev) ...@@ -980,7 +980,7 @@ static void *gsc_get_drv_data(struct platform_device *pdev)
match = of_match_node(of_match_ptr(exynos_gsc_match), match = of_match_node(of_match_ptr(exynos_gsc_match),
pdev->dev.of_node); pdev->dev.of_node);
if (match) if (match)
driver_data = match->data; driver_data = (struct gsc_driverdata *)match->data;
} else { } else {
driver_data = (struct gsc_driverdata *) driver_data = (struct gsc_driverdata *)
platform_get_device_id(pdev)->driver_data; platform_get_device_id(pdev)->driver_data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment