Re: [PATCH 2/6] sh: remove duplicate ioread/iowrite helpers

2025-06-08 Thread Geert Uytterhoeven
Hi Adrian, On Sat, 7 Jun 2025 at 14:08, John Paul Adrian Glaubitz wrote: > On Sat, 2025-03-15 at 11:59 +0100, Arnd Bergmann wrote: > > From: Arnd Bergmann > > > > The ioread/iowrite functions on sh only do memory mapped I/O like the > > generic verion, and never map onto non-MMIO inb/outb varian

Re: [PATCH 2/6] sh: remove duplicate ioread/iowrite helpers

2025-06-08 Thread John Paul Adrian Glaubitz
Hello Geert, On Sun, 2025-06-08 at 11:39 +0200, Geert Uytterhoeven wrote: > Hi Adrian, > > On Sat, 7 Jun 2025 at 14:08, John Paul Adrian Glaubitz > wrote: > > On Sat, 2025-03-15 at 11:59 +0100, Arnd Bergmann wrote: > > > From: Arnd Bergmann > > > > > > The ioread/iowrite functions on sh only d

Re: [PATCH 2/6] sh: remove duplicate ioread/iowrite helpers

2025-06-07 Thread John Paul Adrian Glaubitz
Hi Arnd, On Sat, 2025-03-15 at 11:59 +0100, Arnd Bergmann wrote: > From: Arnd Bergmann > > The ioread/iowrite functions on sh only do memory mapped I/O like the > generic verion, and never map onto non-MMIO inb/outb variants, so they > just add complexity. In particular, the use of asm-generic/i

[PATCH 2/6] sh: remove duplicate ioread/iowrite helpers

2025-03-15 Thread Arnd Bergmann
From: Arnd Bergmann The ioread/iowrite functions on sh only do memory mapped I/O like the generic verion, and never map onto non-MMIO inb/outb variants, so they just add complexity. In particular, the use of asm-generic/iomap.h ties the declaration to the x86 implementation. Remove the custom ve