Skip to content

Commit c918c27

Browse files
jerome-pouillergregkh
authored andcommitted
staging: wfx: fix lines ending with a comma instead of a semicolon
Obviously introduced by mistake. Fixes: 0977927 ("staging: wfx: simplify hif_start() usage") Signed-off-by: Jérôme Pouiller <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent bab0a0b commit c918c27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/staging/wfx/hif_tx.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@ int hif_start(struct wfx_vif *wvif, const struct ieee80211_bss_conf *conf,
428428
struct hif_msg *hif;
429429
struct hif_req_start *body = wfx_alloc_hif(sizeof(*body), &hif);
430430

431-
body->dtim_period = conf->dtim_period,
432-
body->short_preamble = conf->use_short_preamble,
433-
body->channel_number = cpu_to_le16(channel->hw_value),
431+
body->dtim_period = conf->dtim_period;
432+
body->short_preamble = conf->use_short_preamble;
433+
body->channel_number = cpu_to_le16(channel->hw_value);
434434
body->beacon_interval = cpu_to_le32(conf->beacon_int);
435435
body->basic_rate_set =
436436
cpu_to_le32(wfx_rate_mask_to_hw(wvif->wdev, conf->basic_rates));

0 commit comments

Comments
 (0)