summaryrefslogtreecommitdiffstats
path: root/drivers/mfd/hi6421-pmic-core.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>2023-08-10 11:58:44 +0200
committerLee Jones <lee@kernel.org>2023-08-22 08:07:51 +0100
commitb2ee6a378d05016357eba021698f4d3620455312 (patch)
tree956e496d795959058d260b5040574eb4fc03717e /drivers/mfd/hi6421-pmic-core.c
parentb1da99664b51c0538bec271e9d9924a3d92e3bd4 (diff)
downloadlinux-b2ee6a378d05016357eba021698f4d3620455312.tar.gz
linux-b2ee6a378d05016357eba021698f4d3620455312.tar.bz2
linux-b2ee6a378d05016357eba021698f4d3620455312.zip
mfd: hi6421-pmic: Fix Wvoid-pointer-to-enum-cast warning
'type' is an enum, thus cast of pointer on 64-bit compile test with W=1 causes: hi6421-pmic-core.c:62:9: error: cast to smaller integer type 'enum hi6421_type' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast] Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20230810095849.123321-4-krzysztof.kozlowski@linaro.org Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd/hi6421-pmic-core.c')
-rw-r--r--drivers/mfd/hi6421-pmic-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/hi6421-pmic-core.c b/drivers/mfd/hi6421-pmic-core.c
index cb5cf4a81c06..a6a890537a1e 100644
--- a/drivers/mfd/hi6421-pmic-core.c
+++ b/drivers/mfd/hi6421-pmic-core.c
@@ -59,7 +59,7 @@ static int hi6421_pmic_probe(struct platform_device *pdev)
id = of_match_device(of_hi6421_pmic_match, &pdev->dev);
if (!id)
return -EINVAL;
- type = (enum hi6421_type)id->data;
+ type = (uintptr_t)id->data;
pmic = devm_kzalloc(&pdev->dev, sizeof(*pmic), GFP_KERNEL);
if (!pmic)