Re: [PATCH v3] vdpa: solidrun: Replace deprecated PCI functions

2024-12-16 Thread Stefano Garzarella
On Fri, Dec 13, 2024 at 07:39:46PM +0100, Philipp Stanner wrote: On Fri, 2024-12-13 at 16:10 +0100, Stefano Garzarella wrote: On Wed, Dec 11, 2024 at 11:47:05AM +0100, Philipp Stanner wrote: > The PCI functions > >pcim_iomap_regions() >pcim_iounmap_regions() >pcim_iomap_table() > > h

Re: [PATCH v3] vdpa: solidrun: Replace deprecated PCI functions

2024-12-13 Thread Philipp Stanner
On Fri, 2024-12-13 at 16:10 +0100, Stefano Garzarella wrote: > On Wed, Dec 11, 2024 at 11:47:05AM +0100, Philipp Stanner wrote: > > The PCI functions > > > > pcim_iomap_regions() > > pcim_iounmap_regions() > > pcim_iomap_table() > > > > have been deprecated by the PCI subsystem. > >

Re: [PATCH v3] vdpa: solidrun: Replace deprecated PCI functions

2024-12-13 Thread Stefano Garzarella
On Wed, Dec 11, 2024 at 11:47:05AM +0100, Philipp Stanner wrote: The PCI functions pcim_iomap_regions() pcim_iounmap_regions() pcim_iomap_table() have been deprecated by the PCI subsystem. Replace these functions with their successors pcim_iomap_region() and pcim_iounma

[PATCH v3] vdpa: solidrun: Replace deprecated PCI functions

2024-12-11 Thread Philipp Stanner
The PCI functions pcim_iomap_regions() pcim_iounmap_regions() pcim_iomap_table() have been deprecated by the PCI subsystem. Replace these functions with their successors pcim_iomap_region() and pcim_iounmap_region(). Signed-off-by: Philipp Stanner --- Changes in v3: -