summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcodeworkx <daniel.hillenbrand@codeworkx.de>2012-06-08 11:01:47 +0200
committercodeworkx <daniel.hillenbrand@codeworkx.de>2012-06-08 11:01:47 +0200
commit952954aafaf69b626aa71e05d1c75b9742843f1c (patch)
tree5e76c8594cbffa3bfec86b1d934597d92b9a5a81
parent05804b14193b917e6acd9275fa29d0108a9945e6 (diff)
downloadandroid_hardware_samsung-952954aafaf69b626aa71e05d1c75b9742843f1c.tar.gz
android_hardware_samsung-952954aafaf69b626aa71e05d1c75b9742843f1c.tar.bz2
android_hardware_samsung-952954aafaf69b626aa71e05d1c75b9742843f1c.zip
exynos4: hdmi: fix invalid conversion from void* to unsigned int
Change-Id: Ib81076f7f85719cd7bc318d45a0b176211b0ee89
-rw-r--r--exynos4/hal/libhdmi/SecHdmi/SecHdmi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/exynos4/hal/libhdmi/SecHdmi/SecHdmi.cpp b/exynos4/hal/libhdmi/SecHdmi/SecHdmi.cpp
index 444a9db..21c84ad 100644
--- a/exynos4/hal/libhdmi/SecHdmi/SecHdmi.cpp
+++ b/exynos4/hal/libhdmi/SecHdmi/SecHdmi.cpp
@@ -415,7 +415,7 @@ bool SecHdmi::create(int width, int height)
}
for (int i = 0; i < HDMI_G2D_OUTPUT_BUF_NUM; i++)
- g2d_reserved_memory[i] = ion_base_addr + (g2d_reserved_memory_size * i);
+ g2d_reserved_memory[i] = (unsigned int)ion_base_addr + (g2d_reserved_memory_size * i);
#endif
#else
#ifndef BOARD_USE_V4L2