Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

myri10ge: replace comma with semicolons

Commit fd24173439c0 ("myri10ge: avoid uninitialized variable use")
added commas instead of semicolons

Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
Link: https://patch.msgid.link/20260212055028.3248491-1-nichen@iscas.ac.cn
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Chen Ni and committed by
Jakub Kicinski
7c375811 5a702856

+6 -6
+6 -6
drivers/net/ethernet/myricom/myri10ge/myri10ge.c
··· 688 688 689 689 /* probe for IPv6 TSO support */ 690 690 mgp->features = NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_TSO; 691 - cmd.data0 = 0, 692 - cmd.data1 = 0, 693 - cmd.data2 = 0, 691 + cmd.data0 = 0; 692 + cmd.data1 = 0; 693 + cmd.data2 = 0; 694 694 status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_MAX_TSO6_HDR_SIZE, 695 695 &cmd, 0); 696 696 if (status == 0) { ··· 821 821 int status, ctl; 822 822 823 823 ctl = pause ? MXGEFW_ENABLE_FLOW_CONTROL : MXGEFW_DISABLE_FLOW_CONTROL; 824 - cmd.data0 = 0, 825 - cmd.data1 = 0, 826 - cmd.data2 = 0, 824 + cmd.data0 = 0; 825 + cmd.data1 = 0; 826 + cmd.data2 = 0; 827 827 status = myri10ge_send_cmd(mgp, ctl, &cmd, 0); 828 828 829 829 if (status) {