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

2015-12-10 Thread Joe Perches
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) ___ devel mailing

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

2015-12-10 Thread Moritz König
This patch adds missing spaces at binary operators in comedi.h. Signed-off-by: Moritz König Signed-off-by: Fabian Lang --- drivers/staging/comedi/comedi.h | 30 +++--- 1 file changed, 15 insertions(+), 15 deletions(-) diff