All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [trivial] usb: Fix typo in drivers/usb
@ 2012-10-26 14:43 Masanari Iida
  2012-10-30 19:30 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Masanari Iida @ 2012-10-26 14:43 UTC (permalink / raw)
  To: trivial, linux-kernel, gregkh, linux-usb, balbi; +Cc: Masanari Iida

Correct spelling typo in debug message within drivers/usb.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 drivers/usb/gadget/fsl_udc_core.c   | 2 +-
 drivers/usb/gadget/tcm_usb_gadget.c | 2 +-
 drivers/usb/host/Kconfig            | 4 ++--
 drivers/usb/musb/musb_dsps.c        | 2 +-
 drivers/usb/renesas_usbhs/fifo.c    | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/usb/gadget/fsl_udc_core.c b/drivers/usb/gadget/fsl_udc_core.c
index 3def828..37a4e01 100644
--- a/drivers/usb/gadget/fsl_udc_core.c
+++ b/drivers/usb/gadget/fsl_udc_core.c
@@ -2126,7 +2126,7 @@ static int fsl_proc_read(char *page, char **start, off_t off, int count,
 
 	tmp_reg = fsl_readl(&dr_regs->usbintr);
 	t = scnprintf(next, size,
-			"USB Intrrupt Enable Reg:\n"
+			"USB Interrupt Enable Reg:\n"
 			"Sleep Enable: %d SOF Received Enable: %d "
 			"Reset Enable: %d\n"
 			"System Error Enable: %d "
diff --git a/drivers/usb/gadget/tcm_usb_gadget.c b/drivers/usb/gadget/tcm_usb_gadget.c
index 5444866..73eac8f 100644
--- a/drivers/usb/gadget/tcm_usb_gadget.c
+++ b/drivers/usb/gadget/tcm_usb_gadget.c
@@ -1387,7 +1387,7 @@ static struct se_node_acl *usbg_alloc_fabric_acl(struct se_portal_group *se_tpg)
 
 	nacl = kzalloc(sizeof(struct usbg_nacl), GFP_KERNEL);
 	if (!nacl) {
-		printk(KERN_ERR "Unable to alocate struct usbg_nacl\n");
+		printk(KERN_ERR "Unable to allocate struct usbg_nacl\n");
 		return NULL;
 	}
 
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index 075d2ec..7cac2e8 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -418,7 +418,7 @@ config USB_OHCI_HCD_PLATFORM
 	default n
 	---help---
 	  Adds an OHCI host driver for a generic platform device, which
-	  provieds a memory space and an irq.
+	  provides a memory space and an irq.
 
 	  If unsure, say N.
 
@@ -428,7 +428,7 @@ config USB_EHCI_HCD_PLATFORM
 	default n
 	---help---
 	  Adds an EHCI host driver for a generic platform device, which
-	  provieds a memory space and an irq.
+	  provides a memory space and an irq.
 
 	  If unsure, say N.
 
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c
index 494772f..59ad13d 100644
--- a/drivers/usb/musb/musb_dsps.c
+++ b/drivers/usb/musb/musb_dsps.c
@@ -294,7 +294,7 @@ static irqreturn_t dsps_interrupt(int irq, void *hci)
 	 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
 	 */
 	if ((usbintr & MUSB_INTR_BABBLE) && is_host_enabled(musb))
-		pr_info("CAUTION: musb: Babble Interrupt Occured\n");
+		pr_info("CAUTION: musb: Babble Interrupt Occurred\n");
 
 	if (usbintr & ((1 << wrp->drvvbus) << wrp->usb_shift)) {
 		int drvvbus = dsps_readl(reg_base, wrp->status);
diff --git a/drivers/usb/renesas_usbhs/fifo.c b/drivers/usb/renesas_usbhs/fifo.c
index ecd1730..2a5b78d 100644
--- a/drivers/usb/renesas_usbhs/fifo.c
+++ b/drivers/usb/renesas_usbhs/fifo.c
@@ -163,7 +163,7 @@ static int usbhsf_pkt_handler(struct usbhs_pipe *pipe, int type)
 		func = pkt->handler->dma_done;
 		break;
 	default:
-		dev_err(dev, "unknown pkt hander\n");
+		dev_err(dev, "unknown pkt handler\n");
 		goto __usbhs_pkt_handler_end;
 	}
 
-- 
1.8.0.rc3.16.g8ead1bf


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

* Re: [PATCH] [trivial] usb: Fix typo in drivers/usb
  2012-10-26 14:43 [PATCH] [trivial] usb: Fix typo in drivers/usb Masanari Iida
@ 2012-10-30 19:30 ` Greg KH
  2012-10-31 12:46   ` Felipe Balbi
  0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2012-10-30 19:30 UTC (permalink / raw)
  To: Masanari Iida; +Cc: trivial, linux-kernel, linux-usb, balbi

On Fri, Oct 26, 2012 at 11:43:19PM +0900, Masanari Iida wrote:
> Correct spelling typo in debug message within drivers/usb.
> 
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>

This no longer applies, please redo it against the latest linux-next
tree.

thanks,

greg k-h

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

* Re: [PATCH] [trivial] usb: Fix typo in drivers/usb
  2012-10-30 19:30 ` Greg KH
@ 2012-10-31 12:46   ` Felipe Balbi
  0 siblings, 0 replies; 3+ messages in thread
From: Felipe Balbi @ 2012-10-31 12:46 UTC (permalink / raw)
  To: Greg KH; +Cc: Masanari Iida, trivial, linux-kernel, linux-usb, balbi

[-- Attachment #1: Type: text/plain, Size: 429 bytes --]

Hi,

On Tue, Oct 30, 2012 at 12:30:59PM -0700, Greg KH wrote:
> On Fri, Oct 26, 2012 at 11:43:19PM +0900, Masanari Iida wrote:
> > Correct spelling typo in debug message within drivers/usb.
> > 
> > Signed-off-by: Masanari Iida <standby24x7@gmail.com>
> 
> This no longer applies, please redo it against the latest linux-next
> tree.

When doing so, you can add my Acked-by: Felipe Balbi <balbi@ti.com>

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

end of thread, other threads:[~2012-10-31 12:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-26 14:43 [PATCH] [trivial] usb: Fix typo in drivers/usb Masanari Iida
2012-10-30 19:30 ` Greg KH
2012-10-31 12:46   ` Felipe Balbi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.