Re: [PATCH v2] drm/ast: use managed devres functions

2023-11-16 Thread kernel test robot
-functions/20231104-022841 base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next patch link: https://lore.kernel.org/r/20231103182542.97589-2-pstanner%40redhat.com patch subject: [PATCH v2] drm/ast: use managed devres functions config: x86_64-randconfig-122-20231116 (https://download.01.o

Re: [PATCH v2] drm/ast: use managed devres functions

2023-11-10 Thread Philipp Stanner
On Fri, 2023-11-03 at 19:25 +0100, Philipp Stanner wrote: > Currently, tha ast-driver just maps the PCI-dev's regions with > pcim_iomap(). It does not actually reserve the regions exclusively > with, e.g., pci_request_regions(). > > Replace the calls to pcim_iomap() with ones to pcim_iomap_regions

[PATCH v2] drm/ast: use managed devres functions

2023-11-03 Thread Philipp Stanner
Currently, tha ast-driver just maps the PCI-dev's regions with pcim_iomap(). It does not actually reserve the regions exclusively with, e.g., pci_request_regions(). Replace the calls to pcim_iomap() with ones to pcim_iomap_regions() to reserve and map the regions simultaneously. Suggested-by: Tho