Re: [U-Boot] [PATCH v2 4/5] lib: Import hexdump.c from Linux

2018-06-13 Thread Alexey Brodkin
On Wed, 2018-06-13 at 10:24 +0200, Mario Six wrote: > Hi Alexey, > > On Mon, Jun 4, 2018 at 6:05 PM, Alexey Brodkin > wrote: > > Hi Mario, > > > > On Wed, 2018-05-23 at 14:09 +0200, Mario Six wrote: > > > Especially for commands, it is useful to be able to turn a hexadecimal > > > string into it

Re: [U-Boot] [PATCH v2 4/5] lib: Import hexdump.c from Linux

2018-06-13 Thread Mario Six
Hi Alexey, On Mon, Jun 4, 2018 at 6:05 PM, Alexey Brodkin wrote: > Hi Mario, > > On Wed, 2018-05-23 at 14:09 +0200, Mario Six wrote: >> Especially for commands, it is useful to be able to turn a hexadecimal >> string into its binary representation. >> >> Hence, import the hex_to_bin, bin2hex, and

Re: [U-Boot] [PATCH v2 4/5] lib: Import hexdump.c from Linux

2018-06-04 Thread Alexey Brodkin
Hi Mario, On Wed, 2018-05-23 at 14:09 +0200, Mario Six wrote: > Especially for commands, it is useful to be able to turn a hexadecimal > string into its binary representation. > > Hence, import the hex_to_bin, bin2hex, and hex2bin functions from the > Linux kernel. > > Signed-off-by: Mario Six

Re: [U-Boot] [PATCH v2 4/5] lib: Import hexdump.c from Linux

2018-05-25 Thread Mario Six
Hi Simon, On Wed, May 23, 2018 at 6:33 PM, Simon Glass wrote: > Hi Mario, > > On 23 May 2018 at 06:09, Mario Six wrote: >> Especially for commands, it is useful to be able to turn a hexadecimal >> string into its binary representation. >> >> Hence, import the hex_to_bin, bin2hex, and hex2bin fun

Re: [U-Boot] [PATCH v2 4/5] lib: Import hexdump.c from Linux

2018-05-23 Thread Simon Glass
Hi Mario, On 23 May 2018 at 06:09, Mario Six wrote: > Especially for commands, it is useful to be able to turn a hexadecimal > string into its binary representation. > > Hence, import the hex_to_bin, bin2hex, and hex2bin functions from the > Linux kernel. > > Signed-off-by: Mario Six > > --- > >