Re: [RFC PATCH 1/4] cmd: fuse: Remove custom string functions

2025-03-17 Thread Tom Rini
On Mon, Mar 17, 2025 at 02:29:39PM +0530, Harsha Vardhan V M wrote: > > > On 14/03/25 19:39, Tom Rini wrote: > > On Fri, Mar 14, 2025 at 07:13:19PM +0530, Harsha Vardhan V M wrote: > > > > > > > > > On 13/03/25 21:45, Tom Rini wrote: > > > > On Thu, Mar 13, 2025 at 05:25:14PM +0530, Harsha Vard

Re: [RFC PATCH 1/4] cmd: fuse: Remove custom string functions

2025-03-17 Thread Harsha Vardhan V M
On 14/03/25 19:39, Tom Rini wrote: On Fri, Mar 14, 2025 at 07:13:19PM +0530, Harsha Vardhan V M wrote: On 13/03/25 21:45, Tom Rini wrote: On Thu, Mar 13, 2025 at 05:25:14PM +0530, Harsha Vardhan V M wrote: Remove custom string functions and replace them with normal string functions. Remo

Re: [EXTERNAL] Re: [RFC PATCH 1/4] cmd: fuse: Remove custom string functions

2025-03-14 Thread Harsha Vardhan V M
On 13/03/25 21:45, Tom Rini wrote: On Thu, Mar 13, 2025 at 05:25:14PM +0530, Harsha Vardhan V M wrote: Remove custom string functions and replace them with normal string functions. Remove the custom strtou32 and replace it with str2long. Signed-off-by: Harsha Vardhan V M Thanks for doing

Re: [EXTERNAL] Re: [RFC PATCH 1/4] cmd: fuse: Remove custom string functions

2025-03-14 Thread Tom Rini
On Fri, Mar 14, 2025 at 07:13:19PM +0530, Harsha Vardhan V M wrote: > > > On 13/03/25 21:45, Tom Rini wrote: > > On Thu, Mar 13, 2025 at 05:25:14PM +0530, Harsha Vardhan V M wrote: > > > > > Remove custom string functions and replace them with normal string > > > functions. Remove the custom str

Re: [RFC PATCH 1/4] cmd: fuse: Remove custom string functions

2025-03-13 Thread Tom Rini
On Thu, Mar 13, 2025 at 05:25:14PM +0530, Harsha Vardhan V M wrote: > Remove custom string functions and replace them with normal string > functions. Remove the custom strtou32 and replace it with str2long. > > Signed-off-by: Harsha Vardhan V M Thanks for doing this. > --- > cmd/fuse.c | 27 +

[RFC PATCH 1/4] cmd: fuse: Remove custom string functions

2025-03-13 Thread Harsha Vardhan V M
Remove custom string functions and replace them with normal string functions. Remove the custom strtou32 and replace it with str2long. Signed-off-by: Harsha Vardhan V M --- cmd/fuse.c | 27 --- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/cmd/fuse.c b/cm