Hi,
On Sat, 24 Aug 2002, Eyal Lebedinsky wrote:
> linux/drivers/usb/brlvger.c compile error
>
> You would think that gcc, having had the same problem for a while,
> would have smarted up by now. And they say computers are our
> future...
Can't believe! In 2.5 we still use concatenation w/__FUNCTION__.
#define dbgprint(args...) \
({ printk(KERN_DEBUG "Voyager: " __FUNCTION__ ": " args); \
printk("\n"); })
Shall we fix it?
#define dbgprint(args...) \
printk(KERN_DEBUG "Voyager: %s: " args "\n", __FUNCTION__ );
should cut it, but
#define dbgprint(fmt, args...) \
printk(KERN_DEBUG "Voyager: %s: " fmt "\n", __FUNCTION__ , args);
might be better.
Thunder
-- --./../...-/. -.--/---/..-/.-./..././.-../..-. .---/..-/.../- .- --/../-./..-/-/./--..-- ../.----./.-../.-.. --./../...-/. -.--/---/..- .- -/---/--/---/.-./.-./---/.--/.-.-.- --./.-/-.../.-./.././.-../.-.-.-- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Fri Aug 23 2002 - 22:00:28 EST