diff options
Diffstat (limited to 'sys/dev/txp/if_txp.c')
-rw-r--r-- | sys/dev/txp/if_txp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/txp/if_txp.c b/sys/dev/txp/if_txp.c index 68f2421..7491cba 100644 --- a/sys/dev/txp/if_txp.c +++ b/sys/dev/txp/if_txp.c @@ -805,7 +805,7 @@ txp_rx_reclaim(sc, r) m_adj(m, sizeof(struct ether_header)); if (rxd->rx_stat & RX_STAT_VLAN) { - VLAN_INPUT_TAG(ifp, eh, m, htons(rxd->rx_vlan >> 16)); + VLAN_INPUT_TAG(eh, m, htons(rxd->rx_vlan >> 16)); goto next; } |