Re: [U-Boot] [PATCH v2 1/3] net: sh-eth: fix inl and outl definitions

2017-12-05 Thread Joe Hershberger
On Fri, Nov 3, 2017 at 8:30 AM, Chris Brandt wrote: > The macros inl and outl maybe already be defined from file > arch/arm/include/asm/io.h so there may be no reason to define them. > And if you do try defined them here, you get a redefined complier warning. > >

Re: [U-Boot] [PATCH v2 1/3] net: sh-eth: fix inl and outl definitions

2017-11-12 Thread Nobuhiro Iwamatsu
Hi, 2017-11-03 22:30 GMT+09:00 Chris Brandt : > The macros inl and outl maybe already be defined from file > arch/arm/include/asm/io.h so there may be no reason to define them. > And if you do try defined them here, you get a redefined complier warning. > >

[U-Boot] [PATCH v2 1/3] net: sh-eth: fix inl and outl definitions

2017-11-03 Thread Chris Brandt
The macros inl and outl maybe already be defined from file arch/arm/include/asm/io.h so there may be no reason to define them. And if you do try defined them here, you get a redefined complier warning. Signed-off-by: Chris Brandt --- drivers/net/sh_eth.h | 4 +++- 1