From patchwork Wed Oct 8 21:42:29 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 5055711 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id D4EDFC11AB for ; Wed, 8 Oct 2014 21:46:46 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0F5332020E for ; Wed, 8 Oct 2014 21:46:46 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D7B3020204 for ; Wed, 8 Oct 2014 21:46:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755957AbaJHVmf (ORCPT ); Wed, 8 Oct 2014 17:42:35 -0400 Received: from mail-la0-f51.google.com ([209.85.215.51]:43395 "EHLO mail-la0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755902AbaJHVme (ORCPT ); Wed, 8 Oct 2014 17:42:34 -0400 Received: by mail-la0-f51.google.com with SMTP id ge10so9227044lab.24 for ; Wed, 08 Oct 2014 14:42:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:mime-version:content-transfer-encoding:content-type; bh=9f7C85KTMYoew0NF/1a6o41MGjPqp2JbJSX3OTBCyCs=; b=AOJbaD9LXtqLX5nN8XOjJlnVGmDFTReL5267CeFEhc3C600vS9W50Ub9wuwnkK9xAw ZjBXLg0VAa+SSP+uKnflzGqoVd+bx5T+bDo5IYApZw+ODKPgEdSsLeSaoX6EyIjM+Rh6 aqAGlesMxJM0eWaUMf2muwAfJFFPWZmA9gd3RidopX52FmXAUm3iPdf0QpZ16S6repAY 6F6Z6TmPusL8vCshJk0uiVtm224isMf2k4DaPmVa36KPMzT8Q2UBAH1Oe+A89xU79/ki PyAuscWBBI5bDzxZG4OQ6/d9OkmZjhm4v2B2ZwMnQ3H214P+wFPcAuiP5ovtFu+QgC8K fwbA== X-Gm-Message-State: ALoCoQnlNbny+FysT72GgloXi07TNx0iNIR2ZacMNmZyvQ3Z/b9IgGOpNiANgmE5ohyR23xX8WBh X-Received: by 10.152.234.76 with SMTP id uc12mr14463936lac.50.1412804553090; Wed, 08 Oct 2014 14:42:33 -0700 (PDT) Received: from wasted.cogentembedded.com (ppp83-237-248-242.pppoe.mtu-net.ru. [83.237.248.242]) by mx.google.com with ESMTPSA id rl6sm403387lac.17.2014.10.08.14.42.31 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 08 Oct 2014 14:42:32 -0700 (PDT) From: Sergei Shtylyov To: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org Cc: linux-sh@vger.kernel.org Subject: [PATCH] renesas_usbhs: fix platform init error message Date: Thu, 09 Oct 2014 01:42:29 +0400 Message-ID: <1629718.KlA1FP4xFz@wasted.cogentembedded.com> Organization: Cogent Embedded Inc. User-Agent: KMail/4.14.1 (Linux/3.16.3-200.fc20.x86_64; KDE/4.14.1; x86_64; ; ) MIME-Version: 1.0 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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 --- drivers/usb/renesas_usbhs/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: usb/drivers/usb/renesas_usbhs/common.c =================================================================== --- usb.orig/drivers/usb/renesas_usbhs/common.c +++ usb/drivers/usb/renesas_usbhs/common.c @@ -572,7 +572,7 @@ static int usbhs_probe(struct platform_d */ 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; }