hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/drivers/net/usb/kalmia.c
....@@ -65,8 +65,8 @@
6565 init_msg, init_msg_len, &act_len, KALMIA_USB_TIMEOUT);
6666 if (status != 0) {
6767 netdev_err(dev->net,
68
- "Error sending init packet. Status %i, length %i\n",
69
- status, act_len);
68
+ "Error sending init packet. Status %i\n",
69
+ status);
7070 return status;
7171 }
7272 else if (act_len != init_msg_len) {
....@@ -83,8 +83,8 @@
8383
8484 if (status != 0)
8585 netdev_err(dev->net,
86
- "Error receiving init result. Status %i, length %i\n",
87
- status, act_len);
86
+ "Error receiving init result. Status %i\n",
87
+ status);
8888 else if (act_len != expected_len)
8989 netdev_err(dev->net, "Unexpected init result length: %i\n",
9090 act_len);