Re: [U-Boot] [PATCH v10 12/16] regmap: Add endianness support

2018-10-14 Thread Daniel Schwierzeck
On 04.10.2018 09:00, Mario Six wrote: > Add support for switching the endianness of regmap accesses via the > "little-endian", "big-endian", and "native-endian" boolean properties in > the device tree. > > The default endianness is native endianness. > > Signed-off-by: Mario Six > > --- > >

Re: [U-Boot] [PATCH v10 12/16] regmap: Add endianness support

2018-10-11 Thread Simon Glass
On 4 October 2018 at 01:00, Mario Six wrote: > Add support for switching the endianness of regmap accesses via the > "little-endian", "big-endian", and "native-endian" boolean properties in > the device tree. > > The default endianness is native endianness. > > Signed-off-by: Mario Six > > --- >

[U-Boot] [PATCH v10 12/16] regmap: Add endianness support

2018-10-04 Thread Mario Six
Add support for switching the endianness of regmap accesses via the "little-endian", "big-endian", and "native-endian" boolean properties in the device tree. The default endianness is native endianness. Signed-off-by: Mario Six --- v9 -> v10: * Switched to readb/writeb for 8-bit reads/writes