public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 46/59] drivers/usb: Add missing "space"
       [not found]       ` <e65bfe9bbcf02e9c9c6204e6b52b79e13dfaa446.1195454436.git.joe@perches.com>
@ 2007-11-20  1:53         ` Joe Perches
  2007-11-20  2:19           ` David Brownell
  0 siblings, 1 reply; 5+ messages in thread
From: Joe Perches @ 2007-11-20  1:53 UTC (permalink / raw)
  To: linux-kernel
  Cc: David Brownell, Greg Kroah-Hartman, Thomas Dahlmann, info-linux,
	linux-usb-devel, linux-usb-users


Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/usb/atm/ueagle-atm.c    |    4 ++--
 drivers/usb/gadget/amd5536udc.c |    2 +-
 drivers/usb/gadget/m66592-udc.c |    2 +-
 drivers/usb/gadget/net2280.c    |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/atm/ueagle-atm.c b/drivers/usb/atm/ueagle-atm.c
index 389c5b1..fad5d91 100644
--- a/drivers/usb/atm/ueagle-atm.c
+++ b/drivers/usb/atm/ueagle-atm.c
@@ -1990,7 +1990,7 @@ static void uea_dispatch_cmv_e1(struct uea_softc *sc, struct intr_pkt *intr)
 	return;
 
 bad2:
-	uea_err(INS_TO_USBDEV(sc), "unexpected cmv received,"
+	uea_err(INS_TO_USBDEV(sc), "unexpected cmv received, "
 			"Function : %d, Subfunction : %d\n",
 			E1_FUNCTION_TYPE(cmv->bFunction),
 			E1_FUNCTION_SUBTYPE(cmv->bFunction));
@@ -2038,7 +2038,7 @@ static void uea_dispatch_cmv_e4(struct uea_softc *sc, struct intr_pkt *intr)
 	return;
 
 bad2:
-	uea_err(INS_TO_USBDEV(sc), "unexpected cmv received,"
+	uea_err(INS_TO_USBDEV(sc), "unexpected cmv received, "
 			"Function : %d, Subfunction : %d\n",
 			E4_FUNCTION_TYPE(cmv->wFunction),
 			E4_FUNCTION_SUBTYPE(cmv->wFunction));
diff --git a/drivers/usb/gadget/amd5536udc.c b/drivers/usb/gadget/amd5536udc.c
index c72e962..66e10da 100644
--- a/drivers/usb/gadget/amd5536udc.c
+++ b/drivers/usb/gadget/amd5536udc.c
@@ -1244,7 +1244,7 @@ udc_queue(struct usb_ep *usbep, struct usb_request *usbreq, gfp_t gfp)
 		/* stop OUT naking */
 		if (!ep->in) {
 			if (!use_dma && udc_rxfifo_pending) {
-				DBG(dev, "udc_queue(): pending bytes in"
+				DBG(dev, "udc_queue(): pending bytes in "
 					"rxfifo after nyet\n");
 				/*
 				 * read pending bytes afer nyet:
diff --git a/drivers/usb/gadget/m66592-udc.c b/drivers/usb/gadget/m66592-udc.c
index ebc5536..20942be 100644
--- a/drivers/usb/gadget/m66592-udc.c
+++ b/drivers/usb/gadget/m66592-udc.c
@@ -709,7 +709,7 @@ static void irq_ep0_write(struct m66592_ep *ep, struct m66592_request *req)
 	do {
 		tmp = m66592_read(m66592, ep->fifoctr);
 		if (i++ > 100000) {
-			printk(KERN_ERR "pipe0 is busy. maybe cpu i/o bus"
+			printk(KERN_ERR "pipe0 is busy. maybe cpu i/o bus "
 				"conflict. please power off this controller.");
 			return;
 		}
diff --git a/drivers/usb/gadget/net2280.c b/drivers/usb/gadget/net2280.c
index d5d473f..33469cf 100644
--- a/drivers/usb/gadget/net2280.c
+++ b/drivers/usb/gadget/net2280.c
@@ -2435,7 +2435,7 @@ static void handle_stat0_irqs (struct net2280 *dev, u32 stat)
 			break;
 		default:
 delegate:
-			VDEBUG (dev, "setup %02x.%02x v%04x i%04x l%04x"
+			VDEBUG (dev, "setup %02x.%02x v%04x i%04x l%04x "
 				"ep_cfg %08x\n",
 				u.r.bRequestType, u.r.bRequest,
 				w_value, w_index, w_length,
-- 
1.5.3.5.652.gf192c


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

* Re: [PATCH 46/59] drivers/usb: Add missing "space"
  2007-11-20  1:53         ` [PATCH 46/59] drivers/usb: " Joe Perches
@ 2007-11-20  2:19           ` David Brownell
  0 siblings, 0 replies; 5+ messages in thread
From: David Brownell @ 2007-11-20  2:19 UTC (permalink / raw)
  To: Joe Perches
  Cc: linux-kernel, David Brownell, Greg Kroah-Hartman, Thomas Dahlmann,
	info-linux, linux-usb-devel, linux-usb-users

On Monday 19 November 2007, Joe Perches wrote:
> 
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
>  drivers/usb/atm/ueagle-atm.c    |    4 ++--
>  drivers/usb/gadget/amd5536udc.c |    2 +-
>  drivers/usb/gadget/m66592-udc.c |    2 +-
>  drivers/usb/gadget/net2280.c    |    2 +-

ACK for the three USB peripheral controller drivers.


>  4 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/usb/atm/ueagle-atm.c b/drivers/usb/atm/ueagle-atm.c
> index 389c5b1..fad5d91 100644
> --- a/drivers/usb/atm/ueagle-atm.c
> +++ b/drivers/usb/atm/ueagle-atm.c
> @@ -1990,7 +1990,7 @@ static void uea_dispatch_cmv_e1(struct uea_softc *sc, struct intr_pkt *intr)
>  	return;
>  
>  bad2:
> -	uea_err(INS_TO_USBDEV(sc), "unexpected cmv received,"
> +	uea_err(INS_TO_USBDEV(sc), "unexpected cmv received, "
>  			"Function : %d, Subfunction : %d\n",
>  			E1_FUNCTION_TYPE(cmv->bFunction),
>  			E1_FUNCTION_SUBTYPE(cmv->bFunction));
> @@ -2038,7 +2038,7 @@ static void uea_dispatch_cmv_e4(struct uea_softc *sc, struct intr_pkt *intr)
>  	return;
>  
>  bad2:
> -	uea_err(INS_TO_USBDEV(sc), "unexpected cmv received,"
> +	uea_err(INS_TO_USBDEV(sc), "unexpected cmv received, "
>  			"Function : %d, Subfunction : %d\n",
>  			E4_FUNCTION_TYPE(cmv->wFunction),
>  			E4_FUNCTION_SUBTYPE(cmv->wFunction));
> diff --git a/drivers/usb/gadget/amd5536udc.c b/drivers/usb/gadget/amd5536udc.c
> index c72e962..66e10da 100644
> --- a/drivers/usb/gadget/amd5536udc.c
> +++ b/drivers/usb/gadget/amd5536udc.c
> @@ -1244,7 +1244,7 @@ udc_queue(struct usb_ep *usbep, struct usb_request *usbreq, gfp_t gfp)
>  		/* stop OUT naking */
>  		if (!ep->in) {
>  			if (!use_dma && udc_rxfifo_pending) {
> -				DBG(dev, "udc_queue(): pending bytes in"
> +				DBG(dev, "udc_queue(): pending bytes in "
>  					"rxfifo after nyet\n");
>  				/*
>  				 * read pending bytes afer nyet:
> diff --git a/drivers/usb/gadget/m66592-udc.c b/drivers/usb/gadget/m66592-udc.c
> index ebc5536..20942be 100644
> --- a/drivers/usb/gadget/m66592-udc.c
> +++ b/drivers/usb/gadget/m66592-udc.c
> @@ -709,7 +709,7 @@ static void irq_ep0_write(struct m66592_ep *ep, struct m66592_request *req)
>  	do {
>  		tmp = m66592_read(m66592, ep->fifoctr);
>  		if (i++ > 100000) {
> -			printk(KERN_ERR "pipe0 is busy. maybe cpu i/o bus"
> +			printk(KERN_ERR "pipe0 is busy. maybe cpu i/o bus "
>  				"conflict. please power off this controller.");
>  			return;
>  		}
> diff --git a/drivers/usb/gadget/net2280.c b/drivers/usb/gadget/net2280.c
> index d5d473f..33469cf 100644
> --- a/drivers/usb/gadget/net2280.c
> +++ b/drivers/usb/gadget/net2280.c
> @@ -2435,7 +2435,7 @@ static void handle_stat0_irqs (struct net2280 *dev, u32 stat)
>  			break;
>  		default:
>  delegate:
> -			VDEBUG (dev, "setup %02x.%02x v%04x i%04x l%04x"
> +			VDEBUG (dev, "setup %02x.%02x v%04x i%04x l%04x "
>  				"ep_cfg %08x\n",
>  				u.r.bRequestType, u.r.bRequest,
>  				w_value, w_index, w_length,
> -- 
> 1.5.3.5.652.gf192c
> 



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

* Re: [PATCH 46/59] drivers/usb: Add missing "space"
       [not found] <mailman.218.1195523679.15309.info-linux@ldcmail.amd.com>
@ 2007-11-20  2:58 ` Joe Perches
  2007-11-20 15:26   ` Jordan Crouse
  2007-11-28 22:55   ` Jordan Crouse
  0 siblings, 2 replies; 5+ messages in thread
From: Joe Perches @ 2007-11-20  2:58 UTC (permalink / raw)
  To: Thomas Dahlmann, info-linux-owner; +Cc: linux-kernel

On Mon, 2007-11-19 at 18:54 -0700, info-linux-owner@ldcmail.amd.com
wrote:
> You are not allowed to post to this mailing list, and your message has
> been automatically rejected.  If you think that your messages are
> being rejected in error, contact the mailing list owner at
> info-linux-owner@ldcmail.amd.com.
> 
> > -------- Forwarded Message --------
> > From: Joe Perches <joe@perches.com>
> > To: linux-kernel@vger.kernel.org
> > Cc: David Brownell <dbrownell@users.sourceforge.net>, Greg
> > Kroah-Hartman <gregkh@suse.de>, Thomas Dahlmann
> > <thomas.dahlmann@amd.com>, info-linux@geode.amd.com,
> > linux-usb-devel@lists.sourceforge.net,
> > linux-usb-users@lists.sourceforge.net
> > Subject: [PATCH 46/59] drivers/usb: Add missing "space"
> > Date: Mon, 19 Nov 2007 17:53:33 -0800

This list info-linux@geode.amd.com should be removed
from MAINTAINERS if it continues to reject not moderate
emails with patches to the list without subscribing.



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

* Re: drivers/usb: Add missing "space"
  2007-11-20  2:58 ` [PATCH 46/59] drivers/usb: Add missing "space" Joe Perches
@ 2007-11-20 15:26   ` Jordan Crouse
  2007-11-28 22:55   ` Jordan Crouse
  1 sibling, 0 replies; 5+ messages in thread
From: Jordan Crouse @ 2007-11-20 15:26 UTC (permalink / raw)
  To: Joe Perches; +Cc: Thomas Dahlmann, info-linux-owner, linux-kernel

On 19/11/07 18:58 -0800, Joe Perches wrote:
> On Mon, 2007-11-19 at 18:54 -0700, info-linux-owner@ldcmail.amd.com
> wrote:
> > You are not allowed to post to this mailing list, and your message has
> > been automatically rejected.  If you think that your messages are
> > being rejected in error, contact the mailing list owner at
> > info-linux-owner@ldcmail.amd.com.
> > 
> > > -------- Forwarded Message --------
> > > From: Joe Perches <joe@perches.com>
> > > To: linux-kernel@vger.kernel.org
> > > Cc: David Brownell <dbrownell@users.sourceforge.net>, Greg
> > > Kroah-Hartman <gregkh@suse.de>, Thomas Dahlmann
> > > <thomas.dahlmann@amd.com>, info-linux@geode.amd.com,
> > > linux-usb-devel@lists.sourceforge.net,
> > > linux-usb-users@lists.sourceforge.net
> > > Subject: [PATCH 46/59] drivers/usb: Add missing "space"
> > > Date: Mon, 19 Nov 2007 17:53:33 -0800
> 
> This list info-linux@geode.amd.com should be removed
> from MAINTAINERS if it continues to reject not moderate
> emails with patches to the list without subscribing.

Agreed.  I'll switch to moderation.

> 
> 
> 

-- 
Jordan Crouse
Systems Software Development Engineer 
Advanced Micro Devices, Inc.



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

* Re: drivers/usb: Add missing "space"
  2007-11-20  2:58 ` [PATCH 46/59] drivers/usb: Add missing "space" Joe Perches
  2007-11-20 15:26   ` Jordan Crouse
@ 2007-11-28 22:55   ` Jordan Crouse
  1 sibling, 0 replies; 5+ messages in thread
From: Jordan Crouse @ 2007-11-28 22:55 UTC (permalink / raw)
  To: Joe Perches; +Cc: Thomas Dahlmann, info-linux-owner, linux-kernel

On 19/11/07 18:58 -0800, Joe Perches wrote:
> On Mon, 2007-11-19 at 18:54 -0700, info-linux-owner@ldcmail.amd.com
> wrote:
> > You are not allowed to post to this mailing list, and your message has
> > been automatically rejected.  If you think that your messages are
> > being rejected in error, contact the mailing list owner at
> > info-linux-owner@ldcmail.amd.com.
> > 
> > > -------- Forwarded Message --------
> > > From: Joe Perches <joe@perches.com>
> > > To: linux-kernel@vger.kernel.org
> > > Cc: David Brownell <dbrownell@users.sourceforge.net>, Greg
> > > Kroah-Hartman <gregkh@suse.de>, Thomas Dahlmann
> > > <thomas.dahlmann@amd.com>, info-linux@geode.amd.com,
> > > linux-usb-devel@lists.sourceforge.net,
> > > linux-usb-users@lists.sourceforge.net
> > > Subject: [PATCH 46/59] drivers/usb: Add missing "space"
> > > Date: Mon, 19 Nov 2007 17:53:33 -0800
> 
> This list info-linux@geode.amd.com should be removed
> from MAINTAINERS if it continues to reject not moderate
> emails with patches to the list without subscribing.

Okay - moderation should be turned on.  Please yell very loudly at me 
(and call me bad names) if it isn't.

Jordan
-- 
Jordan Crouse
Systems Software Development Engineer 
Advanced Micro Devices, Inc.



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

end of thread, other threads:[~2007-11-28 22:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.218.1195523679.15309.info-linux@ldcmail.amd.com>
2007-11-20  2:58 ` [PATCH 46/59] drivers/usb: Add missing "space" Joe Perches
2007-11-20 15:26   ` Jordan Crouse
2007-11-28 22:55   ` Jordan Crouse
2007-11-20  1:53 [PATCH 43/59] drivers/scsi/qla4xxx: " Joe Perches
2007-11-20  1:53 ` [PATCH 44/59] drivers/scsi: " Joe Perches
2007-11-20  1:53   ` [PATCH 45/59] drivers/serial: " Joe Perches
     [not found]     ` <ee1678e1bc8b80b7ae420059fffc7241486ea91a.1195454434.git.joe@perches.com>
     [not found]       ` <e65bfe9bbcf02e9c9c6204e6b52b79e13dfaa446.1195454436.git.joe@perches.com>
2007-11-20  1:53         ` [PATCH 46/59] drivers/usb: " Joe Perches
2007-11-20  2:19           ` David Brownell

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