Re: Re: [PATCH v2 3/5] drm/xe/display: Avoid calling readq()

2024-01-18 Thread Lucas De Marchi
On Wed, Jan 17, 2024 at 04:15:42PM -0800, Matt Roper wrote: On Tue, Jan 16, 2024 at 09:40:48AM -0800, Lucas De Marchi wrote: readq() is not available in 32bits. iosys-map already has the logic in place to use read u64 in all cases, so simply add a helper variable for using that. Fixes:

Re: [PATCH v2 3/5] drm/xe/display: Avoid calling readq()

2024-01-17 Thread Matt Roper
On Tue, Jan 16, 2024 at 09:40:48AM -0800, Lucas De Marchi wrote: > readq() is not available in 32bits. iosys-map already has the logic in > place to use read u64 in all cases, so simply add a helper variable for > using that. > > Fixes: 44e694958b95 ("drm/xe/display: Implement display support") >

[PATCH v2 3/5] drm/xe/display: Avoid calling readq()

2024-01-16 Thread Lucas De Marchi
readq() is not available in 32bits. iosys-map already has the logic in place to use read u64 in all cases, so simply add a helper variable for using that. Fixes: 44e694958b95 ("drm/xe/display: Implement display support") Signed-off-by: Lucas De Marchi ---