Re: [PATCH v2 1/5] drm/xe: Use _ULL for u64 division

2024-01-17 Thread Matt Roper
On Tue, Jan 16, 2024 at 09:40:46AM -0800, Lucas De Marchi wrote: > Use DIV_ROUND_UP_ULL() so it also works on 32bit build. > > Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs") > Signed-off-by: Lucas De Marchi Reviewed-by: Matt Roper > --- >

[PATCH v2 1/5] drm/xe: Use _ULL for u64 division

2024-01-16 Thread Lucas De Marchi
Use DIV_ROUND_UP_ULL() so it also works on 32bit build. Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs") Signed-off-by: Lucas De Marchi --- drivers/gpu/drm/xe/xe_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/xe/xe_device.c