From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Tue, 4 Nov 2014 22:48:48 +0000 (+0300)
Subject: usb: renesas_usbhs: fix platform init error message
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=48ac1e57665fa351b2bde534fd64cce2e1b3a4a1;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

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>
---

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