From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott McNutt Date: Thu, 22 Apr 2010 20:02:58 -0400 Subject: [U-Boot] [PATCH v2] nios2: add 64 bits swab support In-Reply-To: <1271517009-2668-1-git-send-email-thomas@wytron.com.tw> References: <1269664833-2488-1-git-send-email-thomas@wytron.com.tw> <1271517009-2668-1-git-send-email-thomas@wytron.com.tw> Message-ID: <4BD0E3B2.7030504@psyent.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Applied. Thanks. --Scott Thomas Chou wrote: > This patch adds 64 bits swab support. Most 32 bits processors use > this. We need 64 bits swab for UBI. > > Signed-off-by: Thomas Chou > --- > arch dir reorganized. > > arch/nios2/include/asm/byteorder.h | 6 ++++++ > 1 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/arch/nios2/include/asm/byteorder.h b/arch/nios2/include/asm/byteorder.h > index 495c823..d5c152e 100644 > --- a/arch/nios2/include/asm/byteorder.h > +++ b/arch/nios2/include/asm/byteorder.h > @@ -25,6 +25,12 @@ > #define __ASM_NIOS2_BYTEORDER_H_ > > #include > + > +#if !defined(__STRICT_ANSI__) || defined(__KERNEL__) > +# define __BYTEORDER_HAS_U64__ > +# define __SWAB_64_THRU_32__ > +#endif > + > #include > > #endif /* __ASM_NIOS2_BYTEORDER_H_ */