summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2023-07-03 09:12:06 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2023-07-03 09:12:06 +0000
commitf7b0bfcb85dfa04fdc043723c1bfe32144980ed0 (patch)
tree0ca91032c2b6aab01e03c8f23306f973a01d2004 /sys
parent0825858de245693ff94119c7e852aa5effb30c54 (diff)
use semicolon not comma at eol
ok stsp@
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_iwx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_iwx.c b/sys/dev/pci/if_iwx.c
index 8fe16a7f7c1..c7c71f38f61 100644
--- a/sys/dev/pci/if_iwx.c
+++ b/sys/dev/pci/if_iwx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iwx.c,v 1.173 2023/06/27 15:31:27 stsp Exp $ */
+/* $OpenBSD: if_iwx.c,v 1.174 2023/07/03 09:12:05 jsg Exp $ */
/*
* Copyright (c) 2014, 2016 genua gmbh <info@genua.de>
@@ -2925,7 +2925,7 @@ iwx_disable_txq(struct iwx_softc *sc, int sta_id, int qid, uint8_t tid)
cmd_v0.cb_size = htole32(0);
cmd_v0.byte_cnt_addr = htole64(0);
cmd_v0.tfdq_addr = htole64(0);
- hcmd.id = IWX_SCD_QUEUE_CFG,
+ hcmd.id = IWX_SCD_QUEUE_CFG;
hcmd.data[0] = &cmd_v0;
hcmd.len[0] = sizeof(cmd_v0);
} else if (cmd_ver == 3) {
@@ -8048,7 +8048,7 @@ iwx_phy_send_rlc(struct iwx_softc *sc, struct iwx_phy_ctxt *phyctxt,
idle_cnt = chains_static;
active_cnt = chains_dynamic;
- cmd.phy_id = htole32(phyctxt->id),
+ cmd.phy_id = htole32(phyctxt->id);
cmd.rlc.rx_chain_info = htole32(iwx_fw_valid_rx_ant(sc) <<
IWX_PHY_RX_CHAIN_VALID_POS);
cmd.rlc.rx_chain_info |= htole32(idle_cnt << IWX_PHY_RX_CHAIN_CNT_POS);