Re: [PATCH 0/8] Cleanup unaligned access macros

2023-05-31 Thread Tom Rini
On Mon, 22 May 2023 14:22:30 +0200, Jens Wiklander wrote: > There are two versions of get/set_unaligned, get_unaligned_be64, > put_unaligned_le64 etc in U-Boot causing confusion (and bugs). > > In this patch-set, I'm trying to fix that with a single unified version of > the access macros to be

Re: [PATCH 0/8] Cleanup unaligned access macros

2023-05-23 Thread Tom Rini
On Mon, May 22, 2023 at 11:34:36PM +0300, Ilias Apalodimas wrote: > Hi Jens > > On Mon, May 22, 2023 at 02:22:30PM +0200, Jens Wiklander wrote: > > Hi, > > > > There are two versions of get/set_unaligned, get_unaligned_be64, > > put_unaligned_le64 etc in U-Boot causing confusion (and bugs). > > >

Re: [PATCH 0/8] Cleanup unaligned access macros

2023-05-22 Thread Ilias Apalodimas
Hi Jens On Mon, May 22, 2023 at 02:22:30PM +0200, Jens Wiklander wrote: > Hi, > > There are two versions of get/set_unaligned, get_unaligned_be64, > put_unaligned_le64 etc in U-Boot causing confusion (and bugs). > > In this patch-set, I'm trying to fix that with a single unified version of > the

[PATCH 0/8] Cleanup unaligned access macros

2023-05-22 Thread Jens Wiklander
Hi, There are two versions of get/set_unaligned, get_unaligned_be64, put_unaligned_le64 etc in U-Boot causing confusion (and bugs). In this patch-set, I'm trying to fix that with a single unified version of the access macros to be used across all archs. This work is inspired by similar changes