Re: [PATCH] [trivial] usb: Fix various typo within usb

From: Randy Dunlap
Date: Wed Apr 18 2012 - 16:13:22 EST


On 04/18/2012 08:04 AM, Masanari Iida wrote:

> Correct spelling typo within usb
>
> Signed-off-by: Masanari Iida <standby24x7@xxxxxxxxx>
> ---
> drivers/usb/gadget/f_hid.c | 2 +-
> drivers/usb/host/ehci-platform.c | 4 ++--
> drivers/usb/host/fhci-tds.c | 2 +-
> drivers/usb/host/ohci-platform.c | 4 ++--
> drivers/usb/host/ohci-ppc-of.c | 2 +-
> 5 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c
> index d238b4e2..23c530a 100644
> --- a/drivers/usb/host/ehci-platform.c
> +++ b/drivers/usb/host/ehci-platform.c
> @@ -94,12 +94,12 @@ static int __devinit ehci_platform_probe(struct platform_device *dev)
>
> irq = platform_get_irq(dev, 0);
> if (irq < 0) {
> - pr_err("no irq provieded");
> + pr_err("no irq provided");
> return irq;
> }
> res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
> if (!res_mem) {
> - pr_err("no memory recourse provieded");
> + pr_err("no memory recourse provided");


resource

> return -ENXIO;
> }
>
> diff --git a/drivers/usb/host/ohci-platform.c b/drivers/usb/host/ohci-platform.c
> index ec5c679..670c705 100644
> --- a/drivers/usb/host/ohci-platform.c
> +++ b/drivers/usb/host/ohci-platform.c
> @@ -93,13 +93,13 @@ static int __devinit ohci_platform_probe(struct platform_device *dev)
>
> irq = platform_get_irq(dev, 0);
> if (irq < 0) {
> - pr_err("no irq provieded");
> + pr_err("no irq provided");
> return irq;
> }
>
> res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
> if (!res_mem) {
> - pr_err("no memory recourse provieded");
> + pr_err("no memory recourse provided");


resource

> return -ENXIO;
> }
>


--
~Randy
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/