[U-Boot] [PATCH v6 01/11] wait_bit: add big endian version of wait_for_bit function

2018-01-02 Thread Álvaro Fernández Rojas
Add 8/16/32 bits and BE/LE versions of wait_for_bit. This is needed for reading registers that are not aligned to 32 bits. Signed-off-by: Álvaro Fernández Rojas --- v6: Introduce changes suggested by Jagan Teki: - Switch to wait_for_bit instead of infinite loop. include/wait_bit.h | 44 ++

Re: [U-Boot] [PATCH v6 01/11] wait_bit: add big endian version of wait_for_bit function

2018-01-02 Thread Daniel Schwierzeck
On 02.01.2018 20:01, Álvaro Fernández Rojas wrote: > Add 8/16/32 bits and BE/LE versions of wait_for_bit. > This is needed for reading registers that are not aligned to 32 bits. > > Signed-off-by: Álvaro Fernández Rojas > --- > v6: Introduce changes suggested by Jagan Teki: > - Switch to wait

Re: [U-Boot] [PATCH v6 01/11] wait_bit: add big endian version of wait_for_bit function

2018-01-07 Thread Jagan Teki
On Wed, Jan 3, 2018 at 12:31 AM, Álvaro Fernández Rojas wrote: > Add 8/16/32 bits and BE/LE versions of wait_for_bit. > This is needed for reading registers that are not aligned to 32 bits. > > Signed-off-by: Álvaro Fernández Rojas > --- > v6: Introduce changes suggested by Jagan Teki: > - Swit