From: Mark Hounschell Date: Tue, 25 Mar 2014 20:38:15 +0000 (-0400) Subject: staging: dgap: Macros with complex values should be enclosed in parenthesis X-Git-Tag: next-20140428~14^2~416 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=77c9976fa6a70cf62c8d5eb606d5353b8713ce1e;p=karo-tx-linux.git staging: dgap: Macros with complex values should be enclosed in parenthesis This patch fixes a checkpatch warning "Macros with complex values should be enclosed in parenthesis" Signed-off-by: Mark Hounschell Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/dgap/dgap.h b/drivers/staging/dgap/dgap.h index 64156807a333..01eb56fd9ada 100644 --- a/drivers/staging/dgap/dgap.h +++ b/drivers/staging/dgap/dgap.h @@ -186,7 +186,7 @@ typedef unsigned char uchar; ECHOCTL | ECHOKE | IEXTEN) #ifndef _POSIX_VDISABLE -#define _POSIX_VDISABLE '\0' +#define _POSIX_VDISABLE ('\0') #endif #define SNIFF_MAX 65536 /* Sniff buffer size (2^n) */