Re: [U-Boot] [PATCH] lib: strto: fix incorrect handling of specified base

2017-09-12 Thread Simon Glass
On 11 September 2017 at 14:53, Rob Clark wrote: > > The strto functions should honor the specified base (if non-zero) rather > than permitting a hex or octal string when the user wanted (for example) > base 10. > > This has been fixed somewhere along the way in the upstream linux kernel > src tree

[U-Boot] [PATCH] lib: strto: fix incorrect handling of specified base

2017-09-11 Thread Rob Clark
The strto functions should honor the specified base (if non-zero) rather than permitting a hex or octal string when the user wanted (for example) base 10. This has been fixed somewhere along the way in the upstream linux kernel src tree, at some point after these was copied in to u-boot. And also