[PATCH 2/2] drm/lima: fix Wvoid-pointer-to-enum-cast warning
Krzysztof Kozlowski
krzysztof.kozlowski at linaro.org
Thu Aug 10 09:59:23 UTC 2023
'id' is an enum, thus cast of pointer on 64-bit compile test with W=1
causes:
lima_drv.c:387:13: error: cast to smaller integer type 'enum lima_gpu_id' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast]
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski at linaro.org>
---
drivers/gpu/drm/lima/lima_drv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/lima/lima_drv.c b/drivers/gpu/drm/lima/lima_drv.c
index 10fd9154cc46..884181708de8 100644
--- a/drivers/gpu/drm/lima/lima_drv.c
+++ b/drivers/gpu/drm/lima/lima_drv.c
@@ -384,7 +384,7 @@ static int lima_pdev_probe(struct platform_device *pdev)
}
ldev->dev = &pdev->dev;
- ldev->id = (enum lima_gpu_id)of_device_get_match_data(&pdev->dev);
+ ldev->id = (uintptr_t)of_device_get_match_data(&pdev->dev);
platform_set_drvdata(pdev, ldev);
--
2.34.1
More information about the dri-devel
mailing list