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

2018-01-02 Thread Tom Rini
On Tue, Jan 02, 2018 at 10:37:31AM +0100, Álvaro Fernández Rojas wrote: > Hello Tom, > > > El 01/01/2018 a las 14:41, Tom Rini escribió: > >On Sat, Dec 30, 2017 at 11:12:36AM +0100, Álvaro Fernández Rojas wrote: > > > >>The only difference with the existing wait_for_bit function is the fact that

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

2018-01-02 Thread Álvaro Fernández Rojas
Hello Tom, El 01/01/2018 a las 14:41, Tom Rini escribió: On Sat, Dec 30, 2017 at 11:12:36AM +0100, Álvaro Fernández Rojas wrote: The only difference with the existing wait_for_bit function is the fact that wait_for_bit_be expects the register size to be read. Signed-off-by: Álvaro Fernández

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

2018-01-01 Thread Tom Rini
On Sat, Dec 30, 2017 at 11:12:36AM +0100, Álvaro Fernández Rojas wrote: > The only difference with the existing wait_for_bit function is the fact that > wait_for_bit_be expects the register size to be read. > > Signed-off-by: Álvaro Fernández Rojas > --- > include/wait_bit.h | 69 > +++

[U-Boot] [PATCH] wait_bit: add big endian version of wait_for_bit function

2017-12-30 Thread Álvaro Fernández Rojas
The only difference with the existing wait_for_bit function is the fact that wait_for_bit_be expects the register size to be read. Signed-off-by: Álvaro Fernández Rojas --- include/wait_bit.h | 69 ++ 1 file changed, 69 insertions(+) diff --gi