Re: [PATCH v2] drm/msm/a6xx: request memory region

2024-05-11 Thread Dmitry Baryshkov
On Sat, 11 May 2024 at 22:56, Kiarash Hajian wrote: > > The driver's memory regions are currently just ioremap()ed, but not > reserved through a request. That's not a bug, but having the request is > a little more robust. > > Implement the region-request through the corresponding managed > devres-

[PATCH v2] drm/msm/a6xx: request memory region

2024-05-11 Thread Kiarash Hajian
The driver's memory regions are currently just ioremap()ed, but not reserved through a request. That's not a bug, but having the request is a little more robust. Implement the region-request through the corresponding managed devres-function. Signed-off-by: Kiarash Hajian --- Changes in v2: - upd