Re: [PATCH 0/5] m68k: IO Fixes and Cleanups

2018-07-18 Thread Geert Uytterhoeven
On Tue, Jul 10, 2018 at 3:48 AM Greg Ungerer  wrote:
> On 09/07/18 19:30, Geert Uytterhoeven wrote:
> > This patch series contains fixes and cleanups for I/O accessors on m68k
> > platforms (with MMU).
> >
> > The first patch contains small fixes without any dependencies.
> > Patches 2 and 3 make small adjustments to drivers that are dependencies
> > for further cleanup.
> > Patch 4 and 5 complete the cleanup.
> >
> > Changes compared to v1:
> >- Move ARCH_HAS_IOREMAP_WT to fix "ioremap_wt redefined" warnings with
> >  m5475evb defconfig,
> >- Add Acked-by.
> >
> > Given the dependencies, I think it's easiest if the respective
> > maintainers would provide their Acked-by, so all patches can go in
> > through the m68k tree.
>
> Retested on ColdFire 5475, looks good.
> For the whole series:
>
> Acked-by: Greg Ungerer 

Thanks, applied and queued for v4.19.

Gr{oetje,eeting}s,

Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
--
To unsubscribe from this list: send the line "unsubscribe linux-m68k" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 0/5] m68k: IO Fixes and Cleanups

2018-07-09 Thread Greg Ungerer

Hi Geert,

On 09/07/18 19:30, Geert Uytterhoeven wrote:

Hi all,

This patch series contains fixes and cleanups for I/O accessors on m68k
platforms (with MMU).

The first patch contains small fixes without any dependencies.
Patches 2 and 3 make small adjustments to drivers that are dependencies
for further cleanup.
Patch 4 and 5 complete the cleanup.

Changes compared to v1:
   - Move ARCH_HAS_IOREMAP_WT to fix "ioremap_wt redefined" warnings with
 m5475evb defconfig,
   - Add Acked-by.

Given the dependencies, I think it's easiest if the respective
maintainers would provide their Acked-by, so all patches can go in
through the m68k tree.


Retested on ColdFire 5475, looks good.
For the whole series:

Acked-by: Greg Ungerer 

Regards
Greg




Thanks!

Geert Uytterhoeven (5):
   m68k/io: Add missing ioremap define guards, fix typo
   net: mac8390: Use standard memcpy_{from,to}io()
   Input: hilkbd - Add casts to HP9000/300 I/O accessors
   m68k/io: Move mem*io define guards to 
   m68k/io: Switch mmu variant to 

  arch/m68k/include/asm/io.h  |  7 +
  arch/m68k/include/asm/io_mm.h   | 42 +++--
  arch/m68k/include/asm/io_no.h   | 12 -
  arch/m68k/include/asm/kmap.h|  9 ++-
  drivers/input/keyboard/hilkbd.c |  4 +--
  drivers/net/ethernet/8390/mac8390.c | 20 +++---
  6 files changed, 30 insertions(+), 64 deletions(-)


--
To unsubscribe from this list: send the line "unsubscribe linux-m68k" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 0/5] m68k: IO Fixes and Cleanups

2018-07-09 Thread Geert Uytterhoeven
Hi all,

This patch series contains fixes and cleanups for I/O accessors on m68k
platforms (with MMU).

The first patch contains small fixes without any dependencies.
Patches 2 and 3 make small adjustments to drivers that are dependencies
for further cleanup.
Patch 4 and 5 complete the cleanup.

Changes compared to v1:
  - Move ARCH_HAS_IOREMAP_WT to fix "ioremap_wt redefined" warnings with
m5475evb defconfig,
  - Add Acked-by.

Given the dependencies, I think it's easiest if the respective
maintainers would provide their Acked-by, so all patches can go in
through the m68k tree.

Thanks!

Geert Uytterhoeven (5):
  m68k/io: Add missing ioremap define guards, fix typo
  net: mac8390: Use standard memcpy_{from,to}io()
  Input: hilkbd - Add casts to HP9000/300 I/O accessors
  m68k/io: Move mem*io define guards to 
  m68k/io: Switch mmu variant to 

 arch/m68k/include/asm/io.h  |  7 +
 arch/m68k/include/asm/io_mm.h   | 42 +++--
 arch/m68k/include/asm/io_no.h   | 12 -
 arch/m68k/include/asm/kmap.h|  9 ++-
 drivers/input/keyboard/hilkbd.c |  4 +--
 drivers/net/ethernet/8390/mac8390.c | 20 +++---
 6 files changed, 30 insertions(+), 64 deletions(-)

-- 
2.17.1

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
--
To unsubscribe from this list: send the line "unsubscribe linux-m68k" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 0/5] m68k: IO Fixes and Cleanups

2018-07-02 Thread Greg Ungerer

Hi Geert,

On 02/07/18 23:35, Geert Uytterhoeven wrote:

Hi all,

This patch series contains fixes and cleanups for I/O accessors on m68k
platforms (with MMU).

The first patch contains small fixes without any dependencies.
Patches 2 and 3 make small adjustments to drivers that are dependencies
for further cleanup.
Patch 4 and 5 complete the cleanup.

Given the dependencies, I think it's easiest if the respective
maintainers would provide their Acked-by, so all patches can go in
through the m68k tree.

Thanks for your comments!


I like it alot. If we can just fix up the warnings caused by patch
number 1 I am more than happy to ack.

Regards
Greg



Geert Uytterhoeven (5):
   m68k/io: Add missing ioremap define guards, fix typo
   net: mac8390: Use standard memcpy_{from,to}io()
   Input: hilkbd - Add casts to HP9000/300 I/O accessors
   m68k/io: Move mem*io define guards to 
   m68k/io: Switch mmu variant to 

  arch/m68k/include/asm/io.h  |  7 +
  arch/m68k/include/asm/io_mm.h   | 40 +++--
  arch/m68k/include/asm/io_no.h   | 12 -
  arch/m68k/include/asm/kmap.h|  7 -
  drivers/input/keyboard/hilkbd.c |  4 +--
  drivers/net/ethernet/8390/mac8390.c | 20 +++
  6 files changed, 28 insertions(+), 62 deletions(-)


--
To unsubscribe from this list: send the line "unsubscribe linux-m68k" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 0/5] m68k: IO Fixes and Cleanups

2018-07-02 Thread Geert Uytterhoeven
Hi all,

This patch series contains fixes and cleanups for I/O accessors on m68k
platforms (with MMU).

The first patch contains small fixes without any dependencies.
Patches 2 and 3 make small adjustments to drivers that are dependencies
for further cleanup.
Patch 4 and 5 complete the cleanup.

Given the dependencies, I think it's easiest if the respective
maintainers would provide their Acked-by, so all patches can go in
through the m68k tree.

Thanks for your comments!

Geert Uytterhoeven (5):
  m68k/io: Add missing ioremap define guards, fix typo
  net: mac8390: Use standard memcpy_{from,to}io()
  Input: hilkbd - Add casts to HP9000/300 I/O accessors
  m68k/io: Move mem*io define guards to 
  m68k/io: Switch mmu variant to 

 arch/m68k/include/asm/io.h  |  7 +
 arch/m68k/include/asm/io_mm.h   | 40 +++--
 arch/m68k/include/asm/io_no.h   | 12 -
 arch/m68k/include/asm/kmap.h|  7 -
 drivers/input/keyboard/hilkbd.c |  4 +--
 drivers/net/ethernet/8390/mac8390.c | 20 +++
 6 files changed, 28 insertions(+), 62 deletions(-)

-- 
2.17.1

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
--
To unsubscribe from this list: send the line "unsubscribe linux-m68k" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html