Re: [U-Boot] [PATCH v1 3/5] cmd: scsi: Make private functions static

2016-11-30 Thread Simon Glass
On 30 November 2016 at 13:46, Michal Simek wrote: > Two functions should be static because they are not exported to any > other file. > Warnings were reported by sparse C=1. > > Signed-off-by: Michal Simek > --- > > cmd/scsi.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Reviewed

Re: [U-Boot] [PATCH v1 3/5] cmd: scsi: Make private functions static

2016-11-30 Thread Tom Rini
On Wed, Nov 30, 2016 at 09:46:49PM +0100, Michal Simek wrote: > Two functions should be static because they are not exported to any > other file. > Warnings were reported by sparse C=1. > > Signed-off-by: Michal Simek Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signatur

[U-Boot] [PATCH v1 3/5] cmd: scsi: Make private functions static

2016-11-30 Thread Michal Simek
Two functions should be static because they are not exported to any other file. Warnings were reported by sparse C=1. Signed-off-by: Michal Simek --- cmd/scsi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/scsi.c b/cmd/scsi.c index 387ca1a262ab..a9c954a82f3d 10064