mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 18:50:31 -04:00
axgbe: Remove unused variable in axgbe_msix_que.
Keep the register read just in case though it seems possible it is not needed as the function later clears specific interrupts via a write to the same register.
This commit is contained in:
parent
354ef278e9
commit
46adc7fad3
1 changed files with 2 additions and 2 deletions
|
|
@ -2042,7 +2042,7 @@ axgbe_msix_que(void *arg)
|
|||
{
|
||||
struct xgbe_channel *channel = (struct xgbe_channel *)arg;
|
||||
struct xgbe_prv_data *pdata = channel->pdata;
|
||||
unsigned int dma_ch_isr, dma_status;
|
||||
unsigned int dma_status;
|
||||
|
||||
axgbe_printf(1, "%s: Channel: %d SR 0x%04x DSR 0x%04x IER:0x%04x D_ISR:0x%04x M_ISR:0x%04x\n",
|
||||
__func__, channel->queue_index,
|
||||
|
|
@ -2052,7 +2052,7 @@ axgbe_msix_que(void *arg)
|
|||
XGMAC_IOREAD(pdata, DMA_ISR),
|
||||
XGMAC_IOREAD(pdata, MAC_ISR));
|
||||
|
||||
dma_ch_isr = XGMAC_DMA_IOREAD(channel, DMA_CH_SR);
|
||||
(void)XGMAC_DMA_IOREAD(channel, DMA_CH_SR);
|
||||
|
||||
/* Disable Tx and Rx channel interrupts */
|
||||
xgbe_disable_rx_tx_int(pdata, channel);
|
||||
|
|
|
|||
Loading…
Reference in a new issue