mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix lint issue.
This commit is contained in:
parent
b648d4806b
commit
e33ee9237e
1 changed files with 2 additions and 2 deletions
|
|
@ -4661,8 +4661,8 @@ igb_print_debug_info(struct adapter *adapter)
|
|||
device_printf(dev, "Queue(%d) tdh = %d, tdt = %d\n", i,
|
||||
E1000_READ_REG(&adapter->hw, E1000_TDH(i)),
|
||||
E1000_READ_REG(&adapter->hw, E1000_TDT(i)));
|
||||
device_printf(dev, "no descriptors avail event = %lu\n",
|
||||
txr->no_desc_avail);
|
||||
device_printf(dev, "TX(%d) no descriptors avail event = %lld\n",
|
||||
txr->me, (long long)txr->no_desc_avail);
|
||||
device_printf(dev, "TX(%d) MSIX IRQ Handled = %lld\n", txr->me,
|
||||
(long long)txr->tx_irq);
|
||||
device_printf(dev, "TX(%d) Packets sent = %lld\n", txr->me,
|
||||
|
|
|
|||
Loading…
Reference in a new issue