Re: [PATCH 24/24] net: seeq: use __iomem pointers for MMIO

2012-09-18 Thread Arnd Bergmann
On Saturday 15 September 2012, David Miller wrote: > From: Russell King - ARM Linux > Date: Sat, 15 Sep 2012 00:56:07 +0100 > > > On Fri, Sep 14, 2012 at 11:34:52PM +0200, Arnd Bergmann wrote: > >> ARM is moving to stricter checks on readl/write functions, > >> so we need to use the correct types

Re: [PATCH 24/24] net: seeq: use __iomem pointers for MMIO

2012-09-14 Thread David Miller
From: Russell King - ARM Linux Date: Sat, 15 Sep 2012 00:56:07 +0100 > On Fri, Sep 14, 2012 at 11:34:52PM +0200, Arnd Bergmann wrote: >> ARM is moving to stricter checks on readl/write functions, >> so we need to use the correct types everywhere. > > Same comment as for eesox. const void __iome

Re: [PATCH 24/24] net: seeq: use __iomem pointers for MMIO

2012-09-14 Thread Russell King - ARM Linux
On Fri, Sep 14, 2012 at 11:34:52PM +0200, Arnd Bergmann wrote: > ARM is moving to stricter checks on readl/write functions, > so we need to use the correct types everywhere. Same comment as for eesox. const void __iomem * is not a problem on x86, so it should not be a problem on ARM. -- To unsubs

[PATCH 24/24] net: seeq: use __iomem pointers for MMIO

2012-09-14 Thread Arnd Bergmann
ARM is moving to stricter checks on readl/write functions, so we need to use the correct types everywhere. Cc: net...@vger.kernel.org Cc: "David S. Miller" Signed-off-by: Arnd Bergmann --- drivers/net/ethernet/seeq/ether3.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --gi