From mboxrd@z Thu Jan 1 00:00:00 1970 From: "John W. Linville" Subject: [patch netdev-2.6 1/2] r8169: endian-swap return of rtl8169_tx_vlan_tag() Date: Thu, 21 Oct 2004 21:00:47 -0400 Sender: netdev-bounce@oss.sgi.com Message-ID: <20041022010046.GB1945@tuxdriver.com> References: <20041022005737.GA1945@tuxdriver.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: To: netdev@oss.sgi.com, linux-kernel@vger.kernel.org, jgarzik@pobox.com, romieu@fr.zoreil.com Content-Disposition: inline In-Reply-To: <20041022005737.GA1945@tuxdriver.com> Errors-to: netdev-bounce@oss.sgi.com List-Id: netdev.vger.kernel.org Endian-swap return of rtl8169_tx_vlan_tag() in rtl8169_start_xmit() Signed-off-by: John W. Linville --- drivers/net/r8169.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) --- netdev-2.6/drivers/net/r8169.c.netdev 2004-10-21 14:48:38.753676111 -0400 +++ netdev-2.6/drivers/net/r8169.c 2004-10-21 14:49:04.874988962 -0400 @@ -1906,7 +1906,7 @@ static int rtl8169_start_xmit(struct sk_ tp->tx_skb[entry].len = len; txd->addr = cpu_to_le64(mapping); - txd->opts2 = rtl8169_tx_vlan_tag(tp, skb); + txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb)); wmb();