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

Configure Feed

Select the types of activity you want to include in your feed.

usb: chipidea: ci_hdrc_imx: Fix a typo ("regualator")

Change "regualator" to "regulator" in this comment.

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Mukesh Ojha <quic_mojha@quicinc.com>
Link: https://lore.kernel.org/r/20221104095838.2132945-1-j.neuschaefer@gmx.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Jonathan Neuschäfer and committed by
Greg Kroah-Hartman
9c3959bb 4c2604a9

+1 -1
+1 -1
drivers/usb/chipidea/ci_hdrc_imx.c
··· 355 355 data->hsic_pad_regulator = 356 356 devm_regulator_get_optional(dev, "hsic"); 357 357 if (PTR_ERR(data->hsic_pad_regulator) == -ENODEV) { 358 - /* no pad regualator is needed */ 358 + /* no pad regulator is needed */ 359 359 data->hsic_pad_regulator = NULL; 360 360 } else if (IS_ERR(data->hsic_pad_regulator)) 361 361 return dev_err_probe(dev, PTR_ERR(data->hsic_pad_regulator),