Re: [dpdk-dev] [PATCH] net/cxgbe: add parenthesis on bitwise operation

2017-01-16 Thread Ferruh Yigit
On 1/16/2017 1:17 PM, Ferruh Yigit wrote: > On 1/16/2017 12:58 PM, Ferruh Yigit wrote: >> On 1/15/2017 7:50 PM, Emmanuel Roullit wrote: >>> clang reports the following error: >>> error: logical not is only applied to the left hand side of this bitwise >>> operator. [-Werror,-Wlogical-not-parenthese

Re: [dpdk-dev] [PATCH] net/cxgbe: add parenthesis on bitwise operation

2017-01-16 Thread Ferruh Yigit
On 1/16/2017 12:58 PM, Ferruh Yigit wrote: > On 1/15/2017 7:50 PM, Emmanuel Roullit wrote: >> clang reports the following error: >> error: logical not is only applied to the left hand side of this bitwise >> operator. [-Werror,-Wlogical-not-parentheses] >> >> Signed-off-by: Emmanuel Roullit > > A

Re: [dpdk-dev] [PATCH] net/cxgbe: add parenthesis on bitwise operation

2017-01-16 Thread Ferruh Yigit
On 1/15/2017 7:50 PM, Emmanuel Roullit wrote: > clang reports the following error: > error: logical not is only applied to the left hand side of this bitwise > operator. [-Werror,-Wlogical-not-parentheses] > > Signed-off-by: Emmanuel Roullit Acked-by: Ferruh Yigit

[dpdk-dev] [PATCH] net/cxgbe: add parenthesis on bitwise operation

2017-01-15 Thread Emmanuel Roullit
clang reports the following error: error: logical not is only applied to the left hand side of this bitwise operator. [-Werror,-Wlogical-not-parentheses] Signed-off-by: Emmanuel Roullit --- drivers/net/cxgbe/cxgbe_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers