mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
staging: brcm80211: use %zu instead of %d for size_t
Signed-off-by: Stanislav Fomichev <kernel@fomichev.me> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
02aed8f3d6
commit
70de655cac
@ -1375,7 +1375,7 @@ wl_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
|
||||
memcpy(join_params.params.bssid, ether_bcast, ETH_ALEN);
|
||||
|
||||
wl_ch_to_chanspec(wl->channel, &join_params, &join_params_size);
|
||||
WL_DBG("join_param_size %d\n", join_params_size);
|
||||
WL_DBG("join_param_size %zu\n", join_params_size);
|
||||
|
||||
if (join_params.ssid.SSID_len < IEEE80211_MAX_SSID_LEN) {
|
||||
WL_DBG("ssid \"%s\", len (%d)\n",
|
||||
|
@ -1861,12 +1861,12 @@ int wl_check_firmwares(struct wl_info *wl)
|
||||
WL_ERROR("%s: invalid bin/hdr fw\n", __func__);
|
||||
rc = -EBADF;
|
||||
} else if (fw_hdr->size % sizeof(struct wl_fw_hdr)) {
|
||||
WL_ERROR("%s: non integral fw hdr file size %d/%zu\n",
|
||||
WL_ERROR("%s: non integral fw hdr file size %zu/%zu\n",
|
||||
__func__, fw_hdr->size,
|
||||
sizeof(struct wl_fw_hdr));
|
||||
rc = -EBADF;
|
||||
} else if (fw->size < MIN_FW_SIZE || fw->size > MAX_FW_SIZE) {
|
||||
WL_ERROR("%s: out of bounds fw file size %d\n",
|
||||
WL_ERROR("%s: out of bounds fw file size %zu\n",
|
||||
__func__, fw->size);
|
||||
rc = -EBADF;
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user