Re: [U-Boot] [PATCH] DM9000: fix build when debugging is enabled

2010-04-05 Thread Mike Frysinger
On Monday 05 April 2010 01:22:39 Ben Warren wrote: > On 3/24/2010 3:21 PM, Mike Frysinger wrote: > > From: Brent Kandetzki > > > > The debug code uses the gcc __func__ define, but tries to use it as a > > static const string which no longer works. So treat it like a normal > > printf string argum

Re: [U-Boot] [PATCH] DM9000: fix build when debugging is enabled

2010-04-04 Thread Ben Warren
Hi Mike, On 3/24/2010 3:21 PM, Mike Frysinger wrote: From: Brent Kandetzki The debug code uses the gcc __func__ define, but tries to use it as a static const string which no longer works. So treat it like a normal printf string argument. Signed-off-by: Brent Kandetzki Signed-off-by: Mike Frys

[U-Boot] [PATCH] DM9000: fix build when debugging is enabled

2010-03-24 Thread Mike Frysinger
From: Brent Kandetzki The debug code uses the gcc __func__ define, but tries to use it as a static const string which no longer works. So treat it like a normal printf string argument. Signed-off-by: Brent Kandetzki Signed-off-by: Mike Frysinger --- drivers/net/dm9000x.c |2 +- 1 files c