Re: [PATCH 2/2] drm/lima: fix Wvoid-pointer-to-enum-cast warning

2023-08-10 Thread Qiang Yu
Reviewed-by: Qiang Yu On Thu, Aug 10, 2023 at 5:59 PM Krzysztof Kozlowski wrote: > > '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-e

[PATCH 2/2] drm/lima: fix Wvoid-pointer-to-enum-cast warning

2023-08-10 Thread Krzysztof Kozlowski
'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 --- drivers/gpu/drm/lima/lima_drv.c | 2 +- 1 f