]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
mac80211: Fix clang warning about constant operand in logical operation
authorMatthias Kaehlcke <mka@chromium.org>
Thu, 6 Apr 2017 23:31:41 +0000 (16:31 -0700)
committerJohannes Berg <johannes.berg@intel.com>
Thu, 13 Apr 2017 06:27:02 +0000 (08:27 +0200)
commit93f56de259376d7e4fff2b2d104082e1fa66e237
tree726d6cde5f35ff7e17d59f8b164e4aab26f846bf
parenta339e4c226c0f2ea0c138e9ffc419874d370f57b
mac80211: Fix clang warning about constant operand in logical operation

When clang detects a non-boolean constant in a logical operation it
generates a 'constant-logical-operand' warning. In
ieee80211_try_rate_control_ops_get() the result of strlen(<const str>)
is used in a logical operation, clang resolves the expression to an
(integer) constant at compile time when clang's builtin strlen function
is used.

Change the condition to check for strlen() > 0 to make the constant
operand boolean and thus avoid the warning.

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/rate.c