]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
usb: fix typo in drivers/usb
authorMasanari Iida <standby24x7@gmail.com>
Wed, 31 Oct 2012 15:03:51 +0000 (00:03 +0900)
committerFelipe Balbi <balbi@ti.com>
Tue, 6 Nov 2012 13:04:14 +0000 (15:04 +0200)
Correct spelling typo in debug messages within drivers/usb.

Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/fsl_udc_core.c
drivers/usb/gadget/tcm_usb_gadget.c
drivers/usb/musb/musb_dsps.c
drivers/usb/renesas_usbhs/fifo.c

index 6ae70cba0c4a99684b51b3e8cbbce890c63aaff1..c19f7f13790bf5be541b5e854beab49c969443ef 100644 (file)
@@ -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 "
index 27a2337f986844901e90a08707d659fa363bc37b..4f7f76f00c7452239067a5b5498a500d26093f50 100644 (file)
@@ -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;
        }
 
index 444346e1e10d768086b1e10487f6b6428c892897..2cb8780d0daed3aef230e79197837aa447b7831d 100644 (file)
@@ -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);
index 3818c8290825dd25faa6a1203fc64e09cd0c4dab..77f1adc2a4fc8ea2e56d96d8e7b0c6d791c7c116 100644 (file)
@@ -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;
        }