Commit 8a222e03 authored by Jérôme Pouiller's avatar Jérôme Pouiller Committed by Greg Kroah-Hartman
Browse files

staging: wfx: fix typo in "num_i_es"



The script that has imported API header has made a mistake "num_i_es".

Signed-off-by: default avatarJérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20191217161318.31402-25-Jerome.Pouiller@silabs.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent aedeb963
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -137,7 +137,7 @@ struct hif_ie_tlv {

struct hif_req_update_ie {
	struct hif_ie_flags ie_flags;
	u16   num_i_es;
	u16   num_ies;
	struct hif_ie_tlv ie[];
} __packed;

+1 −1
Original line number Diff line number Diff line
@@ -429,7 +429,7 @@ int hif_update_ie(struct wfx_vif *wvif, const struct hif_ie_flags *target_frame,
	struct hif_req_update_ie *body = wfx_alloc_hif(buf_len, &hif);

	memcpy(&body->ie_flags, target_frame, sizeof(struct hif_ie_flags));
	body->num_i_es = cpu_to_le16(1);
	body->num_ies = cpu_to_le16(1);
	memcpy(body->ie, ies, ies_len);
	wfx_fill_header(hif, wvif->id, HIF_REQ_ID_UPDATE_IE, buf_len);
	ret = wfx_cmd_send(wvif->wdev, hif, NULL, 0, false);