Re: [U-Boot] [PATCH 1/4] fs/fat: Remove two statements without effect

2016-09-12 Thread Benoît Thébaudeau
Hi Stefan, On Sun, Sep 11, 2016 at 10:51 PM, Stefan Brüns wrote: > fatlength is a local variable which is no more used after the assignment. > s_name is not used in the function, save the strncpy. > > Signed-off-by: Stefan Brüns [...] For the series: Reviewed-by: Benoît Thébaudeau Best regar

Re: [U-Boot] [PATCH 1/4] fs/fat: Remove two statements without effect

2016-09-12 Thread Stephen Warren
On 09/11/2016 02:51 PM, Stefan Brüns wrote: fatlength is a local variable which is no more used after the assignment. s_name is not used in the function, save the strncpy. The series, Acked-by: Stephen Warren ___ U-Boot mailing list U-Boot@lists.den

Re: [U-Boot] [PATCH 1/4] fs/fat: Remove two statements without effect

2016-09-12 Thread Lukasz Majewski
Hi Stefan, > fatlength is a local variable which is no more used after the > assignment. s_name is not used in the function, save the strncpy. > > Signed-off-by: Stefan Brüns > --- > fs/fat/fat_write.c | 5 + > 1 file changed, 1 insertion(+), 4 deletions(-) > > diff --git a/fs/fat/fat_writ

[U-Boot] [PATCH 1/4] fs/fat: Remove two statements without effect

2016-09-11 Thread Stefan Brüns
fatlength is a local variable which is no more used after the assignment. s_name is not used in the function, save the strncpy. Signed-off-by: Stefan Brüns --- fs/fat/fat_write.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/fs/fat/fat_write.c b/fs/fat/fat_write.c index