Re: [PATCH] ptp: ocp: Avoid operator precedence warning in ptp_ocp_summary_show()

From: Jonathan Lemon
Date: Fri Sep 17 2021 - 00:29:39 EST


On Thu, Sep 16, 2021 at 12:43:51PM -0700, Nathan Chancellor wrote:
> Clang warns twice:
>
> drivers/ptp/ptp_ocp.c:2065:16: error: operator '?:' has lower precedence
> than '&'; '&' will be evaluated first
> [-Werror,-Wbitwise-conditional-parentheses]
> on & map ? " ON" : "OFF", src);
> ~~~~~~~~ ^
> drivers/ptp/ptp_ocp.c:2065:16: note: place parentheses around the '&'
> expression to silence this warning
> on & map ? " ON" : "OFF", src);
> ^
> ( )
> drivers/ptp/ptp_ocp.c:2065:16: note: place parentheses around the '?:'
> expression to evaluate it first
> on & map ? " ON" : "OFF", src);
> ^
>
> It is clearly intentional that the bitwise operation be done before the
> ternary operation so add the parentheses as it suggests to fix the
> warning.

Actually, the correct fix is to change '&' to '&&', so a logical
operation is done instead of an arithmetic operation. I believe
this will silence the warning from clang.
--
Jonathan