public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text
@ 2015-02-28 18:11 Fabio Estevam
  2015-02-28 18:11 ` [U-Boot] [PATCH v2 2/2] cmd_usb_mass_storage: Use 'USB Mass Storage' in the help text Fabio Estevam
  2015-03-02  9:39 ` [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text Marek Vasut
  0 siblings, 2 replies; 6+ messages in thread
From: Fabio Estevam @ 2015-02-28 18:11 UTC (permalink / raw)
  To: u-boot

From: Fabio Estevam <fabio.estevam@freescale.com>

Currently the usage text for the 'ums' command looks like this:
                                                                                
Usage:                                                                          
ums ums <USB_controller> [<devtype>] <devnum>  e.g. ums 0 mmc 0                     

,so remove the extra 'ums' in the text.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Acked-by: Marek Vasut <marex@denx.de>
---
Changes since v1:
- None

 common/cmd_usb_mass_storage.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/cmd_usb_mass_storage.c b/common/cmd_usb_mass_storage.c
index 2c879ea..51c3fff 100644
--- a/common/cmd_usb_mass_storage.c
+++ b/common/cmd_usb_mass_storage.c
@@ -159,6 +159,6 @@ exit:
 
 U_BOOT_CMD(ums, 4, 1, do_usb_mass_storage,
 	"Use the UMS [User Mass Storage]",
-	"ums <USB_controller> [<devtype>] <devnum>  e.g. ums 0 mmc 0\n"
+	"<USB_controller> [<devtype>] <devnum>  e.g. ums 0 mmc 0\n"
 	"    devtype defaults to mmc"
 );
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH v2 2/2] cmd_usb_mass_storage: Use 'USB Mass Storage' in the help text
  2015-02-28 18:11 [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text Fabio Estevam
@ 2015-02-28 18:11 ` Fabio Estevam
  2015-02-28 19:02   ` Marek Vasut
  2015-03-02  9:39 ` [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text Marek Vasut
  1 sibling, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2015-02-28 18:11 UTC (permalink / raw)
  To: u-boot

From: Fabio Estevam <fabio.estevam@freescale.com>

USB Mass Storage is the standard name, so let's use it here.

Suggested-by: Soeren Moch <smoch@web.de>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- Newly introduced in this series
 common/cmd_usb_mass_storage.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/cmd_usb_mass_storage.c b/common/cmd_usb_mass_storage.c
index 51c3fff..7bc1e4d 100644
--- a/common/cmd_usb_mass_storage.c
+++ b/common/cmd_usb_mass_storage.c
@@ -158,7 +158,7 @@ exit:
 }
 
 U_BOOT_CMD(ums, 4, 1, do_usb_mass_storage,
-	"Use the UMS [User Mass Storage]",
+	"Use the UMS [USB Mass Storage]",
 	"<USB_controller> [<devtype>] <devnum>  e.g. ums 0 mmc 0\n"
 	"    devtype defaults to mmc"
 );
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH v2 2/2] cmd_usb_mass_storage: Use 'USB Mass Storage' in the help text
  2015-02-28 18:11 ` [U-Boot] [PATCH v2 2/2] cmd_usb_mass_storage: Use 'USB Mass Storage' in the help text Fabio Estevam
@ 2015-02-28 19:02   ` Marek Vasut
  0 siblings, 0 replies; 6+ messages in thread
From: Marek Vasut @ 2015-02-28 19:02 UTC (permalink / raw)
  To: u-boot

On Saturday, February 28, 2015 at 07:11:46 PM, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> USB Mass Storage is the standard name, so let's use it here.
> 
> Suggested-by: Soeren Moch <smoch@web.de>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Marek Vasut <marex@denx.de>

Best regards,
Marek Vasut

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text
  2015-02-28 18:11 [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text Fabio Estevam
  2015-02-28 18:11 ` [U-Boot] [PATCH v2 2/2] cmd_usb_mass_storage: Use 'USB Mass Storage' in the help text Fabio Estevam
@ 2015-03-02  9:39 ` Marek Vasut
  2015-03-02 10:25   ` Fabio Estevam
  1 sibling, 1 reply; 6+ messages in thread
From: Marek Vasut @ 2015-03-02  9:39 UTC (permalink / raw)
  To: u-boot

On Saturday, February 28, 2015 at 07:11:45 PM, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Currently the usage text for the 'ums' command looks like this:
> 
> Usage:
> ums ums <USB_controller> [<devtype>] <devnum>  e.g. ums 0 mmc 0
> 
> ,so remove the extra 'ums' in the text.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> Acked-by: Otavio Salvador <otavio@ossystems.com.br>
> Acked-by: Marek Vasut <marex@denx.de>

Hi!

Can you pick those up, Lukasz, please ? :)

Best regards,
Marek Vasut

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text
  2015-03-02  9:39 ` [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text Marek Vasut
@ 2015-03-02 10:25   ` Fabio Estevam
  2015-03-02 11:36     ` Lukasz Majewski
  0 siblings, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2015-03-02 10:25 UTC (permalink / raw)
  To: u-boot

On Mon, Mar 2, 2015 at 6:39 AM, Marek Vasut <marex@denx.de> wrote:
> On Saturday, February 28, 2015 at 07:11:45 PM, Fabio Estevam wrote:
>> From: Fabio Estevam <fabio.estevam@freescale.com>
>>
>> Currently the usage text for the 'ums' command looks like this:
>>
>> Usage:
>> ums ums <USB_controller> [<devtype>] <devnum>  e.g. ums 0 mmc 0
>>
>> ,so remove the extra 'ums' in the text.
>>
>> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
>> Acked-by: Otavio Salvador <otavio@ossystems.com.br>
>> Acked-by: Marek Vasut <marex@denx.de>
>
> Hi!
>
> Can you pick those up, Lukasz, please ? :)

Sorry, I missed to copy Lukasz on this series.

Lukasz, I can resend the series if needed.

Regards,

Fabio Estevam

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text
  2015-03-02 10:25   ` Fabio Estevam
@ 2015-03-02 11:36     ` Lukasz Majewski
  0 siblings, 0 replies; 6+ messages in thread
From: Lukasz Majewski @ 2015-03-02 11:36 UTC (permalink / raw)
  To: u-boot

Hi Fabio,

> On Mon, Mar 2, 2015 at 6:39 AM, Marek Vasut <marex@denx.de> wrote:
> > On Saturday, February 28, 2015 at 07:11:45 PM, Fabio Estevam wrote:
> >> From: Fabio Estevam <fabio.estevam@freescale.com>
> >>
> >> Currently the usage text for the 'ums' command looks like this:
> >>
> >> Usage:
> >> ums ums <USB_controller> [<devtype>] <devnum>  e.g. ums 0 mmc 0
> >>
> >> ,so remove the extra 'ums' in the text.
> >>
> >> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> >> Acked-by: Otavio Salvador <otavio@ossystems.com.br>
> >> Acked-by: Marek Vasut <marex@denx.de>
> >
> > Hi!
> >
> > Can you pick those up, Lukasz, please ? :)
> 
> Sorry, I missed to copy Lukasz on this series.
> 
> Lukasz, I can resend the series if needed.
> 
> Regards,
> 
> Fabio Estevam

No problem, I will pull it to -dfu repository.

-- 
Best regards,

Lukasz Majewski

Samsung R&D Institute Poland (SRPOL) | Linux Platform Group

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-03-02 11:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-28 18:11 [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text Fabio Estevam
2015-02-28 18:11 ` [U-Boot] [PATCH v2 2/2] cmd_usb_mass_storage: Use 'USB Mass Storage' in the help text Fabio Estevam
2015-02-28 19:02   ` Marek Vasut
2015-03-02  9:39 ` [U-Boot] [PATCH v2 1/2] cmd_usb_mass_storage: Remove extra 'ums' string in the usage text Marek Vasut
2015-03-02 10:25   ` Fabio Estevam
2015-03-02 11:36     ` Lukasz Majewski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox