diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2016-07-31 12:39:15 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2016-09-03 12:59:45 +0300 |
commit | 2f69e67058fbe9750a4f66ea30b4b6a8648a2fdc (patch) | |
tree | 645129867c8b1ab768fbeb27d992b24b4242d0a4 /drivers/net/wireless | |
parent | 3f37ec79dd21fbdbbab8143a48a87272b22fef22 (diff) | |
download | blackbird-op-linux-2f69e67058fbe9750a4f66ea30b4b6a8648a2fdc.tar.gz blackbird-op-linux-2f69e67058fbe9750a4f66ea30b4b6a8648a2fdc.zip |
mwifiex: remove superfluous condition
for_each_property_of_node is only executed if the
property prop is not NULL.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Acked-by: Amitkumar Karwar <akarwar@marvell.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/marvell/mwifiex/sta_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/marvell/mwifiex/sta_cmd.c b/drivers/net/wireless/marvell/mwifiex/sta_cmd.c index 108c11cc0c16..d1f8011080bc 100644 --- a/drivers/net/wireless/marvell/mwifiex/sta_cmd.c +++ b/drivers/net/wireless/marvell/mwifiex/sta_cmd.c @@ -1485,7 +1485,7 @@ int mwifiex_dnld_dt_cfgdata(struct mwifiex_private *priv, continue; /* property header is 6 bytes, data must fit in cmd buffer */ - if (prop && prop->value && prop->length > 6 && + if (prop->value && prop->length > 6 && prop->length <= MWIFIEX_SIZE_OF_CMD_BUFFER - S_DS_GEN) { ret = mwifiex_send_cmd(priv, HostCmd_CMD_CFG_DATA, HostCmd_ACT_GEN_SET, 0, |