Browse Source

USB: OHCI: fix typo in ohci-platform driver on the word "resource"

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>
Florian Fainelli 12 years ago
parent
commit
ac0e3c04eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/usb/host/ohci-platform.c

+ 1 - 1
drivers/usb/host/ohci-platform.c

@@ -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;
 	}