Re: [PATCH] drivers:staging: sources for ST core

From: Greg KH
Date: Tue Mar 30 2010 - 16:39:20 EST


On Tue, Mar 30, 2010 at 09:23:23PM +0530, Pavan Savoy wrote:
> Alan,
>
> --- On Tue, 30/3/10, Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> wrote:
>
> > From: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx>
> > Subject: Re: [PATCH] drivers:staging: sources for ST core
> > To: pavan_savoy@xxxxxx
> > Cc: marcel@xxxxxxxxxxxx, gregkh@xxxxxxx, linux-kernel@xxxxxxxxxxxxxxx, pavan_savoy@xxxxxxxxxxx
> > Date: Tuesday, 30 March, 2010, 4:52 PM
> > > +/* all debug macros go in here
> > */
> > > +#define ST_DRV_ERR(fmt, arg...)? printk(KERN_ERR
> > "(stc):"fmt"\n" , ## arg)
> > > +#if defined(DEBUG)???
> > ??? /* limited debug messages */
> > > +#define ST_DRV_DBG(fmt, arg...)?
> > printk(KERN_INFO "(stc):"fmt"\n" , ## arg)
> > > +#define ST_DRV_VER(fmt, arg...)
> > > +#elif defined(VERBOSE)???
> > ??? /* very verbose */
> > > +#define ST_DRV_DBG(fmt, arg...)?
> > printk(KERN_INFO "(stc):"fmt"\n" , ## arg)
> > > +#define ST_DRV_VER(fmt, arg...)?
> > printk(KERN_INFO "(stc):"fmt"\n" , ## arg)
> > > +#else /* error msgs only */
> > > +#define ST_DRV_DBG(fmt, arg...)
> > > +#define ST_DRV_VER(fmt, arg...)
> > > +#endif
> >
> > As Greg said earlier - needs to be using the standard debug
> > macros
>
> Agree - It's all there because of the organization's coding standards.
> Will correct it.

Might you also want to correct your organization's coding standards to
follow the correct Linux kernel ones? That way you will not have this
problem in the future.

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/