Re: [PATCH 6/6] lib: Provide a signed version of simple_itoa()

2025-04-04 Thread Tom Rini
On Thu, Mar 20, 2025 at 03:43:17AM +, Simon Glass wrote: > Hi Tom, > > On Wed, 19 Mar 2025 at 16:36, Tom Rini wrote: > > > > On Wed, Mar 19, 2025 at 03:04:00PM +, Simon Glass wrote: > > > Hi Tom, > > > > > > On Wed, 19 Mar 2025 at 15:20, Tom Rini wrote: > > > > > > > > On Wed, Mar 19, 20

Re: [PATCH 6/6] lib: Provide a signed version of simple_itoa()

2025-03-20 Thread Simon Glass
Hi Tom, On Wed, 19 Mar 2025 at 16:36, Tom Rini wrote: > > On Wed, Mar 19, 2025 at 03:04:00PM +, Simon Glass wrote: > > Hi Tom, > > > > On Wed, 19 Mar 2025 at 15:20, Tom Rini wrote: > > > > > > On Wed, Mar 19, 2025 at 01:12:30PM +0100, Heinrich Schuchardt wrote: > > > > Am 19. März 2025 12:59

Re: [PATCH 6/6] lib: Provide a signed version of simple_itoa()

2025-03-19 Thread Tom Rini
On Wed, Mar 19, 2025 at 03:04:00PM +, Simon Glass wrote: > Hi Tom, > > On Wed, 19 Mar 2025 at 15:20, Tom Rini wrote: > > > > On Wed, Mar 19, 2025 at 01:12:30PM +0100, Heinrich Schuchardt wrote: > > > Am 19. März 2025 12:59:08 MEZ schrieb Simon Glass : > > > >In some cases we want to show a si

Re: [PATCH 6/6] lib: Provide a signed version of simple_itoa()

2025-03-19 Thread Simon Glass
Hi Tom, On Wed, 19 Mar 2025 at 15:20, Tom Rini wrote: > > On Wed, Mar 19, 2025 at 01:12:30PM +0100, Heinrich Schuchardt wrote: > > Am 19. März 2025 12:59:08 MEZ schrieb Simon Glass : > > >In some cases we want to show a signed value to the user without needing > > >to use the full printf() implem

Re: [PATCH 6/6] lib: Provide a signed version of simple_itoa()

2025-03-19 Thread Simon Glass
Hi Heinrich, On Wed, 19 Mar 2025 at 13:12, Heinrich Schuchardt wrote: > > Am 19. März 2025 12:59:08 MEZ schrieb Simon Glass : > >In some cases we want to show a signed value to the user without needing > >to use the full printf() implementation. Add a new version of the > >simple_itoa() function

Re: [PATCH 6/6] lib: Provide a signed version of simple_itoa()

2025-03-19 Thread Tom Rini
On Wed, Mar 19, 2025 at 01:12:30PM +0100, Heinrich Schuchardt wrote: > Am 19. März 2025 12:59:08 MEZ schrieb Simon Glass : > >In some cases we want to show a signed value to the user without needing > >to use the full printf() implementation. Add a new version of the > >simple_itoa() function to ha

Re: [PATCH 6/6] lib: Provide a signed version of simple_itoa()

2025-03-19 Thread Heinrich Schuchardt
Am 19. März 2025 12:59:08 MEZ schrieb Simon Glass : >In some cases we want to show a signed value to the user without needing >to use the full printf() implementation. Add a new version of the >simple_itoa() function to handle this. Where will this be used? Why can't printf be used? Why would this

[PATCH 6/6] lib: Provide a signed version of simple_itoa()

2025-03-19 Thread Simon Glass
In some cases we want to show a signed value to the user without needing to use the full printf() implementation. Add a new version of the simple_itoa() function to handle this. Update the existing function to use ulong instead of long, to avoid confusion about which it actually uses. Signed-off-