Re: [PATCH 02/10] i2c: pasemi: Use io{read,write}32

2021-09-28 Thread Sven Peter
On Mon, Sep 27, 2021, at 09:39, Arnd Bergmann wrote: > On Sun, Sep 26, 2021 at 12:00 PM Sven Peter wrote: >> >> In preparation for splitting this driver up into a platform_driver >> and a pci_driver, replace outl/inl usage with ioport_map and >> ioread32/iowrite32. >> >> Signed-off-by: Sven Peter

Re: [PATCH 02/10] i2c: pasemi: Use io{read,write}32

2021-09-27 Thread Arnd Bergmann
On Sun, Sep 26, 2021 at 12:00 PM Sven Peter wrote: > > In preparation for splitting this driver up into a platform_driver > and a pci_driver, replace outl/inl usage with ioport_map and > ioread32/iowrite32. > > Signed-off-by: Sven Peter > > + smbus->ioaddr = ioport_map(smbus->base,

[PATCH 02/10] i2c: pasemi: Use io{read,write}32

2021-09-26 Thread Sven Peter
In preparation for splitting this driver up into a platform_driver and a pci_driver, replace outl/inl usage with ioport_map and ioread32/iowrite32. Signed-off-by: Sven Peter --- drivers/i2c/busses/i2c-pasemi.c | 16 +--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git