Fix or supress various sparse warnings

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
Johannes Berg 2017-01-26 13:09:25 +01:00 committed by Jouni Malinen
parent e91877fb62
commit 30eddf3529
5 changed files with 10 additions and 5 deletions

View file

@ -21,6 +21,7 @@
#include "common/wpa_ctrl.h" #include "common/wpa_ctrl.h"
#include "hostapd.h" #include "hostapd.h"
#include "sta_info.h" #include "sta_info.h"
#include "taxonomy.h"
/* Copy a string with no funny schtuff allowed; only alphanumerics. */ /* Copy a string with no funny schtuff allowed; only alphanumerics. */

View file

@ -106,7 +106,7 @@ static inline void fst_iface_update_mb_ie(struct fst_iface *i,
const u8 *addr, const u8 *addr,
const u8 *buf, size_t size) const u8 *buf, size_t size)
{ {
return i->iface_obj.update_mb_ie(i->iface_obj.ctx, addr, buf, size); i->iface_obj.update_mb_ie(i->iface_obj.ctx, addr, buf, size);
} }
static inline const u8 * fst_iface_get_peer_first(struct fst_iface *i, static inline const u8 * fst_iface_get_peer_first(struct fst_iface *i,

View file

@ -1201,9 +1201,10 @@ skip_ies:
#ifdef CONFIG_TDLS_TESTING #ifdef CONFIG_TDLS_TESTING
if (tdls_testing & TDLS_TESTING_DIFF_BSSID) { if (tdls_testing & TDLS_TESTING_DIFF_BSSID) {
struct wpa_tdls_lnkid *l = (struct wpa_tdls_lnkid *) pos;
wpa_printf(MSG_DEBUG, "TDLS: Testing - use incorrect BSSID in " wpa_printf(MSG_DEBUG, "TDLS: Testing - use incorrect BSSID in "
"Link Identifier"); "Link Identifier");
struct wpa_tdls_lnkid *l = (struct wpa_tdls_lnkid *) pos;
wpa_tdls_linkid(sm, peer, l); wpa_tdls_linkid(sm, peer, l);
l->bssid[5] ^= 0x01; l->bssid[5] ^= 0x01;
pos += sizeof(*l); pos += sizeof(*l);

View file

@ -633,8 +633,8 @@ static int * wpas_beacon_request_freqs(struct wpa_supplicant *wpa_s,
} }
int wpas_get_op_chan_phy(int freq, const u8 *ies, size_t ies_len, static int wpas_get_op_chan_phy(int freq, const u8 *ies, size_t ies_len,
u8 *op_class, u8 *chan, u8 *phy_type) u8 *op_class, u8 *chan, u8 *phy_type)
{ {
const u8 *ie; const u8 *ie;
int sec_chan = 0, vht = 0; int sec_chan = 0, vht = 0;

View file

@ -3769,8 +3769,11 @@ static int wpa_set_htcap_mcs(struct wpa_supplicant *wpa_s,
wpa_msg(wpa_s, MSG_DEBUG, "set_htcap, ht_mcs -:%s:-", ht_mcs); wpa_msg(wpa_s, MSG_DEBUG, "set_htcap, ht_mcs -:%s:-", ht_mcs);
for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++) { for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++) {
long v;
errno = 0; errno = 0;
long v = strtol(tmp, &end, 16); v = strtol(tmp, &end, 16);
if (errno == 0) { if (errno == 0) {
wpa_msg(wpa_s, MSG_DEBUG, wpa_msg(wpa_s, MSG_DEBUG,
"htcap value[%i]: %ld end: %p tmp: %p", "htcap value[%i]: %ld end: %p tmp: %p",