linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: gadget: fix spelling mistakeis "[En]queing" -> "[En]queuing"
@ 2018-09-29 11:43 Colin King
  2018-11-08  1:55 ` Andrew Jeffery
  0 siblings, 1 reply; 3+ messages in thread
From: Colin King @ 2018-09-29 11:43 UTC (permalink / raw)
  To: Felipe Balbi, Greg Kroah-Hartman, Joel Stanley, Andrew Jeffery,
	Michal Simek, linux-usb, linux-arm-kernel, linux-aspeed
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistakes in debug warning messages

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/usb/gadget/udc/aspeed-vhub/epn.c | 2 +-
 drivers/usb/gadget/udc/udc-xilinx.c      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/gadget/udc/aspeed-vhub/epn.c b/drivers/usb/gadget/udc/aspeed-vhub/epn.c
index 5939eb1e97f2..e9ee2b72af19 100644
--- a/drivers/usb/gadget/udc/aspeed-vhub/epn.c
+++ b/drivers/usb/gadget/udc/aspeed-vhub/epn.c
@@ -353,7 +353,7 @@ static int ast_vhub_epn_queue(struct usb_ep* u_ep, struct usb_request *u_req,
 	/* Endpoint enabled ? */
 	if (!ep->epn.enabled || !u_ep->desc || !ep->dev || !ep->d_idx ||
 	    !ep->dev->enabled || ep->dev->suspended) {
-		EPDBG(ep,"Enqueing request on wrong or disabled EP\n");
+		EPDBG(ep, "Enqueuing request on wrong or disabled EP\n");
 		return -ESHUTDOWN;
 	}
 
diff --git a/drivers/usb/gadget/udc/udc-xilinx.c b/drivers/usb/gadget/udc/udc-xilinx.c
index 6407e433bc78..b1f4104d1283 100644
--- a/drivers/usb/gadget/udc/udc-xilinx.c
+++ b/drivers/usb/gadget/udc/udc-xilinx.c
@@ -1078,7 +1078,7 @@ static int xudc_ep_queue(struct usb_ep *_ep, struct usb_request *_req,
 	unsigned long flags;
 
 	if (!ep->desc) {
-		dev_dbg(udc->dev, "%s:queing request to disabled %s\n",
+		dev_dbg(udc->dev, "%s: queuing request to disabled %s\n",
 			__func__, ep->name);
 		return -ESHUTDOWN;
 	}
-- 
2.17.1


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

* Re: [PATCH] usb: gadget: fix spelling mistakeis "[En]queing" -> "[En]queuing"
  2018-09-29 11:43 [PATCH] usb: gadget: fix spelling mistakeis "[En]queing" -> "[En]queuing" Colin King
@ 2018-11-08  1:55 ` Andrew Jeffery
  2018-11-08 14:19   ` David Laight
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Jeffery @ 2018-11-08  1:55 UTC (permalink / raw)
  To: Colin King, Felipe Balbi, Greg Kroah-Hartman, Joel Stanley,
	Michal Simek, linux-usb, linux-arm-kernel, linux-aspeed
  Cc: kernel-janitors, linux-kernel

On Sat, 29 Sep 2018, at 22:13, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to spelling mistakes in debug warning messages
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Reviewed-by: Andrew Jeffery <andrew@aj.id.au>

> ---
>  drivers/usb/gadget/udc/aspeed-vhub/epn.c | 2 +-
>  drivers/usb/gadget/udc/udc-xilinx.c      | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/gadget/udc/aspeed-vhub/epn.c b/drivers/usb/
> gadget/udc/aspeed-vhub/epn.c
> index 5939eb1e97f2..e9ee2b72af19 100644
> --- a/drivers/usb/gadget/udc/aspeed-vhub/epn.c
> +++ b/drivers/usb/gadget/udc/aspeed-vhub/epn.c
> @@ -353,7 +353,7 @@ static int ast_vhub_epn_queue(struct usb_ep* u_ep, 
> struct usb_request *u_req,
>  	/* Endpoint enabled ? */
>  	if (!ep->epn.enabled || !u_ep->desc || !ep->dev || !ep->d_idx ||
>  	    !ep->dev->enabled || ep->dev->suspended) {
> -		EPDBG(ep,"Enqueing request on wrong or disabled EP\n");
> +		EPDBG(ep, "Enqueuing request on wrong or disabled EP\n");
>  		return -ESHUTDOWN;
>  	}
>  
> diff --git a/drivers/usb/gadget/udc/udc-xilinx.c b/drivers/usb/gadget/
> udc/udc-xilinx.c
> index 6407e433bc78..b1f4104d1283 100644
> --- a/drivers/usb/gadget/udc/udc-xilinx.c
> +++ b/drivers/usb/gadget/udc/udc-xilinx.c
> @@ -1078,7 +1078,7 @@ static int xudc_ep_queue(struct usb_ep *_ep, 
> struct usb_request *_req,
>  	unsigned long flags;
>  
>  	if (!ep->desc) {
> -		dev_dbg(udc->dev, "%s:queing request to disabled %s\n",
> +		dev_dbg(udc->dev, "%s: queuing request to disabled %s\n",
>  			__func__, ep->name);
>  		return -ESHUTDOWN;
>  	}
> -- 
> 2.17.1
> 

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

* RE: [PATCH] usb: gadget: fix spelling mistakeis "[En]queing" -> "[En]queuing"
  2018-11-08  1:55 ` Andrew Jeffery
@ 2018-11-08 14:19   ` David Laight
  0 siblings, 0 replies; 3+ messages in thread
From: David Laight @ 2018-11-08 14:19 UTC (permalink / raw)
  To: 'Andrew Jeffery',
	Colin King, Felipe Balbi, Greg Kroah-Hartman, Joel Stanley,
	Michal Simek, linux-usb, linux-arm-kernel, linux-aspeed
  Cc: kernel-janitors, linux-kernel

From: Andrew Jeffery
> Sent: 08 November 2018 01:55
> > -		EPDBG(ep,"Enqueing request on wrong or disabled EP\n");
> > +		EPDBG(ep, "Enqueuing request on wrong or disabled EP\n");

Shouldn't it be Enqueueing ?

	David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)

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

end of thread, other threads:[~2018-11-08 14:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-29 11:43 [PATCH] usb: gadget: fix spelling mistakeis "[En]queing" -> "[En]queuing" Colin King
2018-11-08  1:55 ` Andrew Jeffery
2018-11-08 14:19   ` David Laight

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).