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

2025-01-20 Thread Michael S. Tsirkin
On Mon, Jan 20, 2025 at 10:13:03AM +0100, Philipp Stanner wrote: > On Thu, 2024-12-19 at 10:51 +0100, Stefano Garzarella wrote: > > On Thu, Dec 19, 2024 at 10:44:29AM +0100, Philipp Stanner wrote: > > > From: Philipp Stanner > > > > > > The PCI functions > > > > > > pcim_iomap_regions() > > >

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

2025-01-20 Thread Philipp Stanner
On Thu, 2024-12-19 at 10:51 +0100, Stefano Garzarella wrote: > On Thu, Dec 19, 2024 at 10:44:29AM +0100, Philipp Stanner wrote: > > From: Philipp Stanner > > > > The PCI functions > > > > pcim_iomap_regions() > > pcim_iounmap_regions() > > pcim_iomap_table() > > > > have been deprec

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

2024-12-19 Thread Stefano Garzarella
On Thu, Dec 19, 2024 at 10:44:29AM +0100, Philipp Stanner wrote: From: 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_

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

2024-12-19 Thread Philipp Stanner
From: 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