Skip to content

Commit

Permalink
USB: OHCI: fix typo in ohci-platform driver on the word "resource"
Browse files Browse the repository at this point in the history
We meant to write "resource" instead of "recourse", this patch fixes this
typo.

Signed-off-by: Florian Fainelli <florian@openwrt.org>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Florian Fainelli authored and Greg Kroah-Hartman committed Oct 22, 2012
1 parent 5c9b2b2 commit ac0e3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/host/ohci-platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ static int __devinit ohci_platform_probe(struct platform_device *dev)

res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
if (!res_mem) {
dev_err(&dev->dev, "no memory recourse provided");
dev_err(&dev->dev, "no memory resource provided");
return -ENXIO;
}

Expand Down

0 comments on commit ac0e3c0

Please sign in to comment.