diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-10-08 09:11:43 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-22 14:30:26 -0400 |
commit | 5c9b2b28e5385614169ec133f7b0cbfbeb38dc22 (patch) | |
tree | d7de4dcd2d71702991f7733add70cf68930032e3 /drivers/usb/host/ehci-platform.c | |
parent | 976baf6e96569b1e253233061b074dbe5a7f2ca9 (diff) |
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>
Diffstat (limited to 'drivers/usb/host/ehci-platform.c')
-rw-r--r-- | drivers/usb/host/ehci-platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c index 6516717edbfc..3cb0b1bf9ac2 100644 --- a/drivers/usb/host/ehci-platform.c +++ b/drivers/usb/host/ehci-platform.c | |||
@@ -103,7 +103,7 @@ static int __devinit ehci_platform_probe(struct platform_device *dev) | |||
103 | } | 103 | } |
104 | res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0); | 104 | res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0); |
105 | if (!res_mem) { | 105 | if (!res_mem) { |
106 | dev_err(&dev->dev, "no memory recourse provided"); | 106 | dev_err(&dev->dev, "no memory resource provided"); |
107 | return -ENXIO; | 107 | return -ENXIO; |
108 | } | 108 | } |
109 | 109 | ||