Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

usb: chipidea: Fixed a few typos in comments

Fixed typos in comments of 2 drivers/usb/chipidea files

Signed-off-by: Mickael Maison <mickael.maison@gmail.com>
Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Mickael Maison and committed by
Greg Kroah-Hartman
6629467b d7d30c91

+3 -3
+1 -1
drivers/usb/chipidea/core.c
··· 549 549 if (PTR_ERR(platdata->reg_vbus) == -EPROBE_DEFER) { 550 550 return -EPROBE_DEFER; 551 551 } else if (PTR_ERR(platdata->reg_vbus) == -ENODEV) { 552 - /* no vbus regualator is needed */ 552 + /* no vbus regulator is needed */ 553 553 platdata->reg_vbus = NULL; 554 554 } else if (IS_ERR(platdata->reg_vbus)) { 555 555 dev_err(dev, "Getting regulator error: %ld\n",
+2 -2
drivers/usb/chipidea/otg_fsm.c
··· 303 303 set_tmout(ci, indicator); 304 304 /* Disable port power */ 305 305 hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_PP, 0); 306 - /* Clear exsiting DP irq */ 306 + /* Clear existing DP irq */ 307 307 hw_write_otgsc(ci, OTGSC_DPIS, OTGSC_DPIS); 308 308 /* Enable data pulse irq */ 309 309 hw_write_otgsc(ci, OTGSC_DPIE, OTGSC_DPIE); ··· 663 663 fsm->b_bus_suspend = 1; 664 664 /* 665 665 * Init a timer to know how long this suspend 666 - * will contine, if time out, indicates B no longer 666 + * will continue, if time out, indicates B no longer 667 667 * wants to be host role 668 668 */ 669 669 ci_otg_add_timer(ci, A_BIDL_ADIS);