dect
/
linux-2.6
Archived
13
0
Fork 0

USB: EHCI: fix typo in ehci-platform driver on the word "resource"

Fix the obvious typo in the error message, we meant to write "resource"
instead of "recourse".

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>
This commit is contained in:
Florian Fainelli 2012-10-08 15:11:43 +02:00 committed by Greg Kroah-Hartman
parent 976baf6e96
commit 5c9b2b28e5
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ static int __devinit ehci_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;
}