diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2014-11-05 01:48:48 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-01-12 21:13:27 +0300 |
commit | 48ac1e57665fa351b2bde534fd64cce2e1b3a4a1 (patch) | |
tree | 6c47750ce94e4da7fee03e50217d257296d1636c /drivers/usb/renesas_usbhs | |
parent | 9f56ce075dd83d6b69e26d4d4fcf49ec703119cf (diff) | |
download | linux-48ac1e57665fa351b2bde534fd64cce2e1b3a4a1.tar.xz |
usb: renesas_usbhs: fix platform init error message
There is a typo ("prove" instead of "probe") in the error message printed when
the platform initialization fails. Replace that word with more fitting "init".
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/renesas_usbhs')
-rw-r--r-- | drivers/usb/renesas_usbhs/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/renesas_usbhs/common.c b/drivers/usb/renesas_usbhs/common.c index a706fc4fc13b..76d14f5d246a 100644 --- a/drivers/usb/renesas_usbhs/common.c +++ b/drivers/usb/renesas_usbhs/common.c @@ -615,7 +615,7 @@ static int usbhs_probe(struct platform_device *pdev) */ ret = usbhs_platform_call(priv, hardware_init, pdev); if (ret < 0) { - dev_err(&pdev->dev, "platform prove failed.\n"); + dev_err(&pdev->dev, "platform init failed.\n"); goto probe_end_mod_exit; } |