Re: [linux-usb-devel] [PATCH 033/149] USB: rework C++-style comments

2007-07-12 Thread David Brownell
On Thursday 12 July 2007, Greg Kroah-Hartman wrote: > > +#define VERBOSE_DEBUG  0 > + > +#if VERBOSE_DEBUG > +#define dev_vdbg   dev_dbg > +#else > +#define dev_vdbg(dev, fmt, args...)do { } while (0) > +#endif > + *snicker* Just last week some feedback from Andrew made me think that thi

[linux-usb-devel] [PATCH 033/149] USB: rework C++-style comments

2007-07-12 Thread Greg Kroah-Hartman
From: Alan Stern <[EMAIL PROTECTED]> This patch (as911) replaces some C++-style commented-out debugging lines in driver.c with a new "verbose debugging" macro. It makes the code look cleaner, and it's easier to turn the debugging on or off. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> Signed-of