From patchwork Tue Nov 4 22:48:48 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 5231311 X-Patchwork-Delegate: geert@linux-m68k.org Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id BF30F9F295 for ; Tue, 4 Nov 2014 22:48:54 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F079020166 for ; Tue, 4 Nov 2014 22:48:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F3F5F20160 for ; Tue, 4 Nov 2014 22:48:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751447AbaKDWsw (ORCPT ); Tue, 4 Nov 2014 17:48:52 -0500 Received: from mail-lb0-f179.google.com ([209.85.217.179]:48029 "EHLO mail-lb0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751129AbaKDWsw (ORCPT ); Tue, 4 Nov 2014 17:48:52 -0500 Received: by mail-lb0-f179.google.com with SMTP id l4so5307668lbv.38 for ; Tue, 04 Nov 2014 14:48:50 -0800 (PST) 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=gBg9iCZtQgig3d/m1LGm+uIRLCIIU6y4Ciavk+mMTX0=; b=m+p8qRfdJZnyKeoEdR7+4O+ZZ0StKy7dsSMj4Q1++IknCJf5QhNjMjw+/rnDyMuTVK S8h1CfHkAXGpaERfG1qsaOY/o/sSx7nKxi0iv03e4QdhbhxRDDVoCn4tw6oYzNdu0UAN YVSwGPQgVMY1FEQGUH2znlh0kVZnVFQkBhRR94gNFIdrQ7peAVe3ufHYOyxkmSKFViFE E8oizCK8uzouufysWUAUXOBT24AJ52DK1F5etxmXo0oydhR3EMHSgUDd4KTBtraF9bDR PYObO3ST579QRAxh5gBhqyn7DGPhm/5iPgCP8RhOvszFDCyi/2x0wrFAIhQwznwp9SFH b6gg== X-Gm-Message-State: ALoCoQl4LV9eXI6M9sSpnHbg4wOdACX2vkGSa359aumiovgHt1U9baqO3UPWg2eSJTPU9yLyDY+3 X-Received: by 10.152.21.199 with SMTP id x7mr27447498lae.66.1415141330413; Tue, 04 Nov 2014 14:48:50 -0800 (PST) Received: from wasted.cogentembedded.com (ppp25-240.pppoe.mtu-net.ru. [81.195.25.240]) by mx.google.com with ESMTPSA id ny6sm638640lbb.2.2014.11.04.14.48.49 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 04 Nov 2014 14:48:49 -0800 (PST) From: Sergei Shtylyov To: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org Cc: linux-sh@vger.kernel.org Subject: [PATCH v2] renesas_usbhs: fix platform init error message Date: Wed, 05 Nov 2014 01:48:48 +0300 Message-ID: <5384843.KGcHOMgQLi@wasted.cogentembedded.com> Organization: Cogent Embedded Inc. User-Agent: KMail/4.14.1 (Linux/3.16.6-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=-7.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, 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 --- The patch is against the 'usb-linus' branch of Greg KH's 'usb.git' repo. Changes in varsion 2: - refreshed the patch. 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 @@ -615,7 +615,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; }