Re: [U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2019-01-22 Thread Simon Goldschmidt
Am 22.01.2019 um 18:31 schrieb Joe Hershberger: On Tue, Jan 22, 2019 at 1:26 AM Simon Goldschmidt wrote: Hi Joe, On Tue, Jan 15, 2019 at 10:00 AM Joe Hershberger wrote: On Thu, Nov 22, 2018 at 9:58 AM Simon Goldschmidt wrote: ETHADDR_WILDCARD is defined as the same value in both env_fla

Re: [U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2019-01-22 Thread Joe Hershberger
On Tue, Jan 22, 2019 at 1:26 AM Simon Goldschmidt wrote: > > Hi Joe, > > On Tue, Jan 15, 2019 at 10:00 AM Joe Hershberger > wrote: > > > > On Thu, Nov 22, 2018 at 9:58 AM Simon Goldschmidt > > wrote: > > > > > > ETHADDR_WILDCARD is defined as the same value in both env_flags.h > > > and env_cal

Re: [U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2019-01-21 Thread Simon Goldschmidt
Hi Joe, On Tue, Jan 15, 2019 at 10:00 AM Joe Hershberger wrote: > > On Thu, Nov 22, 2018 at 9:58 AM Simon Goldschmidt > wrote: > > > > ETHADDR_WILDCARD is defined as the same value in both env_flags.h > > and env_callback.h > > > > As env_callback.h includes env_flags.h, remove the duplicate def

Re: [U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2019-01-15 Thread Joe Hershberger
On Thu, Nov 22, 2018 at 9:58 AM Simon Goldschmidt wrote: > > ETHADDR_WILDCARD is defined as the same value in both env_flags.h > and env_callback.h > > As env_callback.h includes env_flags.h, remove the duplicate definition > from env_callback.h > > Signed-off-by: Simon Goldschmidt Acked-by: Joe

Re: [U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2019-01-14 Thread Simon Goldschmidt
Joe, Am 14.12.2018 um 14:43 schrieb Simon Goldschmidt: On Fri, Dec 14, 2018 at 2:28 PM Tom Rini wrote: On Fri, Dec 14, 2018 at 09:55:32AM +0100, Simon Goldschmidt wrote: + Tom On Sun, Dec 9, 2018 at 9:51 PM Simon Goldschmidt wrote: Am 22.11.2018 um 16:58 schrieb Simon Goldschmidt: ETHA

Re: [U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2018-12-14 Thread Simon Goldschmidt
On Fri, Dec 14, 2018 at 2:28 PM Tom Rini wrote: > > On Fri, Dec 14, 2018 at 09:55:32AM +0100, Simon Goldschmidt wrote: > > + Tom > > > > > > On Sun, Dec 9, 2018 at 9:51 PM Simon Goldschmidt > > wrote: > > > > > > Am 22.11.2018 um 16:58 schrieb Simon Goldschmidt: > > > > ETHADDR_WILDCARD is define

Re: [U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2018-12-14 Thread Tom Rini
On Fri, Dec 14, 2018 at 09:55:32AM +0100, Simon Goldschmidt wrote: > + Tom > > > On Sun, Dec 9, 2018 at 9:51 PM Simon Goldschmidt > wrote: > > > > Am 22.11.2018 um 16:58 schrieb Simon Goldschmidt: > > > ETHADDR_WILDCARD is defined as the same value in both env_flags.h > > > and env_callback.h >

Re: [U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2018-12-14 Thread Simon Goldschmidt
+ Tom On Sun, Dec 9, 2018 at 9:51 PM Simon Goldschmidt wrote: > > Am 22.11.2018 um 16:58 schrieb Simon Goldschmidt: > > ETHADDR_WILDCARD is defined as the same value in both env_flags.h > > and env_callback.h > > > > As env_callback.h includes env_flags.h, remove the duplicate definition > > fro

Re: [U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2018-12-09 Thread Simon Goldschmidt
Am 22.11.2018 um 16:58 schrieb Simon Goldschmidt: ETHADDR_WILDCARD is defined as the same value in both env_flags.h and env_callback.h As env_callback.h includes env_flags.h, remove the duplicate definition from env_callback.h Signed-off-by: Simon Goldschmidt --- include/env_callback.h | 2

[U-Boot] [PATCH] net: remove duplicate definition of ETHADDR_WILDCARD

2018-11-22 Thread Simon Goldschmidt
ETHADDR_WILDCARD is defined as the same value in both env_flags.h and env_callback.h As env_callback.h includes env_flags.h, remove the duplicate definition from env_callback.h Signed-off-by: Simon Goldschmidt --- include/env_callback.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/incl