Re: [U-Boot] [PATCH 1/2] COMMON: Add __stringify() function

2012-07-31 Thread Mike Frysinger
On Tuesday 31 July 2012 10:08:51 Marek Vasut wrote: > Dear Mike Frysinger, > > On Tuesday 31 July 2012 09:55:55 Marek Vasut wrote: > > > Dear Mike Frysinger, > > > > would be good to import > > > > linux/stringify.h (rather than adding these macros to common.h) and > > > > converting all consumers

Re: [U-Boot] [PATCH 1/2] COMMON: Add __stringify() function

2012-07-31 Thread Marek Vasut
Dear Mike Frysinger, > On Tuesday 31 July 2012 09:55:55 Marek Vasut wrote: > > Dear Mike Frysinger, > > > > > On Saturday 28 July 2012 15:57:33 Wolfgang Denk wrote: > > > > Marek Vasut wrote: > > > > > > > include/common.h |7 +++ > > > > > > > 1 file changed, 7 insertions(+) > > > > > >

Re: [U-Boot] [PATCH 1/2] COMMON: Add __stringify() function

2012-07-31 Thread Mike Frysinger
On Tuesday 31 July 2012 09:55:55 Marek Vasut wrote: > Dear Mike Frysinger, > > On Saturday 28 July 2012 15:57:33 Wolfgang Denk wrote: > > > Marek Vasut wrote: > > > > > > include/common.h |7 +++ > > > > > > 1 file changed, 7 insertions(+) > > > > > > > > > > We have similar things alread

Re: [U-Boot] [PATCH 1/2] COMMON: Add __stringify() function

2012-07-31 Thread Marek Vasut
Dear Mike Frysinger, > On Saturday 28 July 2012 15:57:33 Wolfgang Denk wrote: > > Marek Vasut wrote: > > > > > include/common.h |7 +++ > > > > > 1 file changed, 7 insertions(+) > > > > > > > > We have similar things already, and we don't add dead code - you add > > > > a macro without u

Re: [U-Boot] [PATCH 1/2] COMMON: Add __stringify() function

2012-07-31 Thread Mike Frysinger
On Saturday 28 July 2012 15:57:33 Wolfgang Denk wrote: > Marek Vasut wrote: > > > > include/common.h |7 +++ > > > > 1 file changed, 7 insertions(+) > > > > > > We have similar things already, and we don't add dead code - you add a > > > macro without users here. > > > > It's used in 2/2

Re: [U-Boot] [PATCH 1/2] COMMON: Add __stringify() function

2012-07-28 Thread Marek Vasut
Dear Wolfgang Denk, > Dear Marek Vasut, > > In message <201207282139.05998.ma...@denx.de> you wrote: > > > > include/common.h |7 +++ > > > > 1 file changed, 7 insertions(+) > > > > > > We have similar things already, and we don't add dead code - you add a > > > macro without users here

Re: [U-Boot] [PATCH 1/2] COMMON: Add __stringify() function

2012-07-28 Thread Wolfgang Denk
Dear Marek Vasut, In message <201207282139.05998.ma...@denx.de> you wrote: > > > > include/common.h |7 +++ > > > 1 file changed, 7 insertions(+) > > > > We have similar things already, and we don't add dead code - you add a > > macro without users here. > > It's used in 2/2 ... what m

Re: [U-Boot] [PATCH 1/2] COMMON: Add __stringify() function

2012-07-28 Thread Marek Vasut
Dear Wolfgang Denk, > Dear Marek Vasut, > > In message <1343483279-11572-1-git-send-email-ma...@denx.de> you wrote: > > This function converts static number to string in preprocessor. > > This is useful as it allows higher usage of puts() in favour of printf() > > > > Signed-off-by: Marek Vasut

Re: [U-Boot] [PATCH 1/2] COMMON: Add __stringify() function

2012-07-28 Thread Wolfgang Denk
Dear Marek Vasut, In message <1343483279-11572-1-git-send-email-ma...@denx.de> you wrote: > This function converts static number to string in preprocessor. > This is useful as it allows higher usage of puts() in favour of printf() > > Signed-off-by: Marek Vasut > Cc: Wolfgang Denk > Cc: Mike Fr