On Sun, Nov 01, 2015 at 10:10:59AM -0800, Greg Kroah-Hartman wrote:
> On Sun, Nov 01, 2015 at 12:20:59PM +0200, Andy Shevchenko wrote:
> > On Sun, Nov 1, 2015 at 11:59 AM, Ranjith <ranjithec...@gmail.com> wrote:
> > > BIT macro is used for defining bit location instead of shifting
> > > operator -  coding style issue
> > 
> > >  #define APCI1032_CTRL_INT_OR           (0 << 1)
> > 
> > > +#define APCI1032_CTRL_INT_AND          BIT(1)
> > 
> > And now you have two styles at the same time. I wouldn't change the
> > current definitions.
> 
> Yes you should, just use BIT(0) for this one.

Oh wait, nevermind, just use the "real" value instead, but using the
BIT() macro is the correct thing, don't tell people not to use it.
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to