diff options
author | Sandhya Bankar <bankarsandhya512@gmail.com> | 2016-03-20 16:52:35 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-03-28 07:30:36 -0700 |
commit | 8c9a093e1cec027bec070134fd56d9ae98b080a8 (patch) | |
tree | 9826c1c20fb3d2f12275f324709b5aff2e49e6a0 /drivers/staging/i4l | |
parent | 3e735d1e3a9a045cbd2610ff33e9fd355d09e632 (diff) | |
download | blackbird-obmc-linux-8c9a093e1cec027bec070134fd56d9ae98b080a8.tar.gz blackbird-obmc-linux-8c9a093e1cec027bec070134fd56d9ae98b080a8.zip |
Staging: i4l: pcbit: capi: Add parentheses to complex macro.
Add parentheses to complex macro.
Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/i4l')
-rw-r--r-- | drivers/staging/i4l/pcbit/capi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/i4l/pcbit/capi.h b/drivers/staging/i4l/pcbit/capi.h index 635f63476944..6f6f4dd0714e 100644 --- a/drivers/staging/i4l/pcbit/capi.h +++ b/drivers/staging/i4l/pcbit/capi.h @@ -17,7 +17,7 @@ #define REQ_DISPLAY 0x04 #define REQ_USER_TO_USER 0x08 -#define AppInfoMask REQ_CAUSE | REQ_DISPLAY | REQ_USER_TO_USER +#define AppInfoMask (REQ_CAUSE | REQ_DISPLAY | REQ_USER_TO_USER) /* Connection Setup */ extern int capi_conn_req(const char *calledPN, struct sk_buff **buf, |