* [PATCH/Ver2] [trivial] usb: Fix typo in drivers/usb
@ 2012-10-31 15:03 Masanari Iida
2012-10-31 15:06 ` Felipe Balbi
0 siblings, 1 reply; 3+ messages in thread
From: Masanari Iida @ 2012-10-31 15:03 UTC (permalink / raw)
To: linux-kernel, trivial, gregkh, linux-usb; +Cc: balbi, Masanari Iida
Correct spelling typo in debug messages within drivers/usb.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Felipe Balbi <balbi@ti.com>
---
drivers/usb/gadget/fsl_udc_core.c | 2 +-
drivers/usb/gadget/tcm_usb_gadget.c | 2 +-
drivers/usb/musb/musb_dsps.c | 2 +-
drivers/usb/renesas_usbhs/fifo.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/usb/gadget/fsl_udc_core.c b/drivers/usb/gadget/fsl_udc_core.c
index 6ae70cb..c19f7f1 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 97e68b3..3849218 100644
--- a/drivers/usb/gadget/tcm_usb_gadget.c
+++ b/drivers/usb/gadget/tcm_usb_gadget.c
@@ -1384,7 +1384,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/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c
index ff5f112..65470eb 100644
--- a/drivers/usb/musb/musb_dsps.c
+++ b/drivers/usb/musb/musb_dsps.c
@@ -296,7 +296,7 @@ static irqreturn_t dsps_interrupt(int irq, void *hci)
* Also, DRVVBUS pulses for SRP (but not at 5V) ...
*/
if (usbintr & MUSB_INTR_BABBLE)
- 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 c021b20..0d6f9f3 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 [flat|nested] 3+ messages in thread
* Re: [PATCH/Ver2] [trivial] usb: Fix typo in drivers/usb
2012-10-31 15:03 [PATCH/Ver2] [trivial] usb: Fix typo in drivers/usb Masanari Iida
@ 2012-10-31 15:06 ` Felipe Balbi
2012-10-31 16:07 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Felipe Balbi @ 2012-10-31 15:06 UTC (permalink / raw)
To: Masanari Iida; +Cc: linux-kernel, trivial, gregkh, linux-usb, balbi
[-- Attachment #1: Type: text/plain, Size: 377 bytes --]
Hi,
On Thu, Nov 01, 2012 at 12:03:51AM +0900, Masanari Iida wrote:
> Correct spelling typo in debug messages within drivers/usb.
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
> Acked-by: Felipe Balbi <balbi@ti.com>
Greg, since now this only touches the stuff I handle, I can apply this
myself.
whatever works best for you, let me know.
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH/Ver2] [trivial] usb: Fix typo in drivers/usb
2012-10-31 15:06 ` Felipe Balbi
@ 2012-10-31 16:07 ` Greg KH
0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2012-10-31 16:07 UTC (permalink / raw)
To: Felipe Balbi; +Cc: Masanari Iida, linux-kernel, trivial, linux-usb
On Wed, Oct 31, 2012 at 05:06:54PM +0200, Felipe Balbi wrote:
> Hi,
>
> On Thu, Nov 01, 2012 at 12:03:51AM +0900, Masanari Iida wrote:
> > Correct spelling typo in debug messages within drivers/usb.
> >
> > Signed-off-by: Masanari Iida <standby24x7@gmail.com>
> > Acked-by: Felipe Balbi <balbi@ti.com>
>
> Greg, since now this only touches the stuff I handle, I can apply this
> myself.
Ok, that makes it easy for me, thanks:
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-31 16:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-31 15:03 [PATCH/Ver2] [trivial] usb: Fix typo in drivers/usb Masanari Iida
2012-10-31 15:06 ` Felipe Balbi
2012-10-31 16:07 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome