From: Thomas Zimmermann Date: Tue, 6 Jun 2023 10:40:55 +0000 (+0200) Subject: fbdev: hitfb: Fix integer-to-pointer cast X-Git-Tag: v6.5-rc1~157^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73eb77e75a00a7eebf5e3ca9e87ee7f728012bed;p=thirdparty%2Fkernel%2Flinux.git fbdev: hitfb: Fix integer-to-pointer cast Fix the type casting from unsigned long to char __iomem *. Resolves the following warning: ../drivers/video/fbdev/hitfb.c:411:27: warning: incorrect type in assignment (different address spaces) ../drivers/video/fbdev/hitfb.c:411:27: expected char [noderef] __iomem *screen_base ../drivers/video/fbdev/hitfb.c:411:27: got void * Signed-off-by: Thomas Zimmermann Reviewed-by: Michael J. Ruhl Signed-off-by: Helge Deller --- diff --git a/drivers/video/fbdev/hitfb.c b/drivers/video/fbdev/hitfb.c index 91766992b438e..ee7bf3c963b2f 100644 --- a/drivers/video/fbdev/hitfb.c +++ b/drivers/video/fbdev/hitfb.c @@ -392,7 +392,7 @@ static int hitfb_probe(struct platform_device *dev) info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN | FBINFO_HWACCEL_FILLRECT | FBINFO_HWACCEL_COPYAREA; - info->screen_base = (void *)hitfb_fix.smem_start; + info->screen_base = (char __iomem *)(uintptr_t)hitfb_fix.smem_start; ret = fb_alloc_cmap(&info->cmap, 256, 0); if (unlikely(ret < 0))