Re: [PATCH 2/2] staging: COMEDI: Added missing spaces at binary operators

From: Joe Perches
Date: Thu Dec 10 2015 - 15:22:49 EST


On Thu, 2015-12-10 at 15:57 +0100, Moritz König wrote:
> #define CR_AREF(a)     (((a) >> 24)&0x03)

If you are going to fix these, it'd probably be better
to use spaces around the '&' too

#define CR_AREF(a)     (((a) >> 24) & 0x03)

--
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/