summaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2016-10-26 17:07:35 +0100
committerLee Jones <lee.jones@linaro.org>2016-11-29 08:21:26 +0000
commite8ae79d6746649cf1d007831d47c042003a46951 (patch)
tree2dc9d6abcefe4be6cce038547e4913482c9e137e /drivers/mfd
parent41751b033aaa9eb996f43496d1e8295cfd7dbcb0 (diff)
downloadlinux-e8ae79d6746649cf1d007831d47c042003a46951.tar.gz
linux-e8ae79d6746649cf1d007831d47c042003a46951.tar.xz
mfd: sun4i-gpadc: Fix 'cast from pointer to integer of different size' warning
When building for X86 using COMPILE_TEST we get this warning: ../drivers/mfd/sun4i-gpadc.c: In function ‘sun4i_gpadc_probe’: ../drivers/mfd/sun4i-gpadc.c:110:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] Since an integer and a pointer are difference sizes on 64bit architectures. Convert to case to a long instead. Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/sun4i-gpadc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/sun4i-gpadc.c b/drivers/mfd/sun4i-gpadc.c
index 8a7ee5b6beb1..9cfc88134d03 100644
--- a/drivers/mfd/sun4i-gpadc.c
+++ b/drivers/mfd/sun4i-gpadc.c
@@ -107,7 +107,7 @@ static int sun4i_gpadc_probe(struct platform_device *pdev)
if (!of_id)
return -EINVAL;
- switch ((int)of_id->data) {
+ switch ((long)of_id->data) {
case ARCH_SUN4I_A10:
cells = sun4i_gpadc_cells;
size = ARRAY_SIZE(sun4i_gpadc_cells);