Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1763310AbXJNSmG (ORCPT ); Sun, 14 Oct 2007 14:42:06 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1764016AbXJNSlV (ORCPT ); Sun, 14 Oct 2007 14:41:21 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:33755 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1764008AbXJNSlU (ORCPT ); Sun, 14 Oct 2007 14:41:20 -0400 To: torvalds@linux-foundation.org Subject: [PATCH] ipg: endianness annotations Cc: linux-kernel@vger.kernel.org, jgarzik@pobox.com, romieu@fr.zoreil.com Message-Id: From: Al Viro Date: Sun, 14 Oct 2007 19:41:19 +0100 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 941 Lines: 43 Signed-off-by: Al Viro --- drivers/net/ipg.h | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/net/ipg.h b/drivers/net/ipg.h index 1952d0d..e418b90 100644 --- a/drivers/net/ipg.h +++ b/drivers/net/ipg.h @@ -776,17 +776,17 @@ enum ipg_regs { * TFD field is 64 bits wide. */ struct ipg_tx { - u64 next_desc; - u64 tfc; - u64 frag_info; + __le64 next_desc; + __le64 tfc; + __le64 frag_info; }; /* Receive Frame Descriptor. Note, each RFD field is 64 bits wide. */ struct ipg_rx { - u64 next_desc; - u64 rfs; - u64 frag_info; + __le64 next_desc; + __le64 rfs; + __le64 frag_info; }; struct SJumbo { -- 1.5.3.GIT - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/