提交 7676b724 编写于 作者: T Tobin C. Harding 提交者: Greg Kroah-Hartman

staging: ks7010: move comparison to right hand side

Checkpatch emits WARNING: Comparisons should place the constant on the
right side of the test.

Move constant to right hand side of test, modify operator to ensure
logic is maintained.
Signed-off-by: NTobin C. Harding <me@tobin.cc>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 e00b9bb3
......@@ -2044,7 +2044,7 @@ static int ks_wlan_set_pmksa(struct net_device *dev,
}
}
if (ptr == &priv->pmklist.head) { /* not find address. */
if (PMK_LIST_MAX > priv->pmklist.size) { /* new cache data */
if (priv->pmklist.size <= PMK_LIST_MAX) { /* new cache data */
for (i = 0; i < PMK_LIST_MAX; i++) {
pmk = &priv->pmklist.pmk[i];
if (!memcmp
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册