Re: [U-Boot] [PATCH V3 02/10] waitbit: Add the generic wait_for_bit macros for 16 and 32 bits.

2019-10-12 Thread Tom Rini
On Wed, Aug 14, 2019 at 03:18:33PM +0200, Philippe Reynes wrote: > From: Kursad Oney > > wait_for_bit_le32 and wait_for_bit_le16 use the raw I/O functions > which would default to big-endian on BE systems. Create the generic > equivalents to use the native endianness. > > Signed-off-by: Kursad

Re: [U-Boot] [PATCH V3 02/10] waitbit: Add the generic wait_for_bit macros for 16 and 32 bits.

2019-08-14 Thread Kursad Oney
Hi Daniel, On Wed, Aug 14, 2019 at 10:43 AM Daniel Schwierzeck wrote: > > > > Am 14.08.19 um 15:29 schrieb Kursad Oney: > > Hi Daniel, > > > > On Wed, Aug 14, 2019 at 9:19 AM Philippe Reynes > > wrote: > >> > >> From: Kursad Oney > >> > >> wait_for_bit_le32 and wait_for_bit_le16 use the raw

Re: [U-Boot] [PATCH V3 02/10] waitbit: Add the generic wait_for_bit macros for 16 and 32 bits.

2019-08-14 Thread Daniel Schwierzeck
Am 14.08.19 um 15:18 schrieb Philippe Reynes: > From: Kursad Oney > > wait_for_bit_le32 and wait_for_bit_le16 use the raw I/O functions > which would default to big-endian on BE systems. Create the generic > equivalents to use the native endianness. > > Signed-off-by: Kursad Oney >

Re: [U-Boot] [PATCH V3 02/10] waitbit: Add the generic wait_for_bit macros for 16 and 32 bits.

2019-08-14 Thread Daniel Schwierzeck
Am 14.08.19 um 15:29 schrieb Kursad Oney: > Hi Daniel, > > On Wed, Aug 14, 2019 at 9:19 AM Philippe Reynes > wrote: >> >> From: Kursad Oney >> >> wait_for_bit_le32 and wait_for_bit_le16 use the raw I/O functions >> which would default to big-endian on BE systems. Create the generic >>

Re: [U-Boot] [PATCH V3 02/10] waitbit: Add the generic wait_for_bit macros for 16 and 32 bits.

2019-08-14 Thread Kursad Oney
Hi Daniel, On Wed, Aug 14, 2019 at 9:19 AM Philippe Reynes wrote: > > From: Kursad Oney > > wait_for_bit_le32 and wait_for_bit_le16 use the raw I/O functions > which would default to big-endian on BE systems. Create the generic > equivalents to use the native endianness. > > Signed-off-by:

[U-Boot] [PATCH V3 02/10] waitbit: Add the generic wait_for_bit macros for 16 and 32 bits.

2019-08-14 Thread Philippe Reynes
From: Kursad Oney wait_for_bit_le32 and wait_for_bit_le16 use the raw I/O functions which would default to big-endian on BE systems. Create the generic equivalents to use the native endianness. Signed-off-by: Kursad Oney Reviewed-by: Philippe Reynes --- include/wait_bit.h | 2 ++ 1 file