| .. | .. |
|---|
| 65 | 65 | init_msg, init_msg_len, &act_len, KALMIA_USB_TIMEOUT); |
|---|
| 66 | 66 | if (status != 0) { |
|---|
| 67 | 67 | 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); |
|---|
| 70 | 70 | return status; |
|---|
| 71 | 71 | } |
|---|
| 72 | 72 | else if (act_len != init_msg_len) { |
|---|
| .. | .. |
|---|
| 83 | 83 | |
|---|
| 84 | 84 | if (status != 0) |
|---|
| 85 | 85 | 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); |
|---|
| 88 | 88 | else if (act_len != expected_len) |
|---|
| 89 | 89 | netdev_err(dev->net, "Unexpected init result length: %i\n", |
|---|
| 90 | 90 | act_len); |
|---|