net: ena: fix inaccurate print type
Use "%u" to replace "hu%". Signed-off-by: Yixing Liu <liuyixing1@huawei.com> Signed-off-by: Weihang Li <liweihang@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3cbf7530a1
commit
b788ff0a7d
|
@ -863,7 +863,7 @@ static u32 ena_com_reg_bar_read32(struct ena_com_dev *ena_dev, u16 offset)
|
||||||
|
|
||||||
if (unlikely(i == timeout)) {
|
if (unlikely(i == timeout)) {
|
||||||
netdev_err(ena_dev->net_device,
|
netdev_err(ena_dev->net_device,
|
||||||
"Reading reg failed for timeout. expected: req id[%hu] offset[%hu] actual: req id[%hu] offset[%hu]\n",
|
"Reading reg failed for timeout. expected: req id[%u] offset[%u] actual: req id[%u] offset[%u]\n",
|
||||||
mmio_read->seq_num, offset, read_resp->req_id,
|
mmio_read->seq_num, offset, read_resp->req_id,
|
||||||
read_resp->reg_off);
|
read_resp->reg_off);
|
||||||
ret = ENA_MMIO_READ_TIMEOUT;
|
ret = ENA_MMIO_READ_TIMEOUT;
|
||||||
|
@ -2396,7 +2396,7 @@ int ena_com_fill_hash_function(struct ena_com_dev *ena_dev,
|
||||||
if (key) {
|
if (key) {
|
||||||
if (key_len != sizeof(hash_key->key)) {
|
if (key_len != sizeof(hash_key->key)) {
|
||||||
netdev_err(ena_dev->net_device,
|
netdev_err(ena_dev->net_device,
|
||||||
"key len (%hu) doesn't equal the supported size (%zu)\n",
|
"key len (%u) doesn't equal the supported size (%zu)\n",
|
||||||
key_len, sizeof(hash_key->key));
|
key_len, sizeof(hash_key->key));
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue