From patchwork Mon Sep 12 11:14:55 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin King X-Patchwork-Id: 9326199 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 8DACE6077F for ; Mon, 12 Sep 2016 11:16:29 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7F20528D06 for ; Mon, 12 Sep 2016 11:16:29 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 736EB28D15; Mon, 12 Sep 2016 11:16:29 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4328628D06 for ; Mon, 12 Sep 2016 11:16:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756086AbcILLQ1 (ORCPT ); Mon, 12 Sep 2016 07:16:27 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:60447 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751955AbcILLQ0 (ORCPT ); Mon, 12 Sep 2016 07:16:26 -0400 Received: from 1.general.cking.uk.vpn ([10.172.193.212] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1bjPDq-00048j-01; Mon, 12 Sep 2016 11:16:22 +0000 From: Colin King To: Kevin Hilman , Nishanth Menon , linux-pm@vger.kernel.org Cc: linux-kernel@vger.kernel.org Subject: [PATCH] PM / AVS: SmartReflex: add in missing white space in error message text Date: Mon, 12 Sep 2016 12:14:55 +0100 Message-Id: <20160912111455.29881-1-colin.king@canonical.com> X-Mailer: git-send-email 2.9.3 MIME-Version: 1.0 Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Colin Ian King Several line wrapped literal strings are missing white spaces, add the whitespace to fix this. Signed-off-by: Colin Ian King --- drivers/power/avs/smartreflex.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/power/avs/smartreflex.c b/drivers/power/avs/smartreflex.c index db9973b..40f46a8 100644 --- a/drivers/power/avs/smartreflex.c +++ b/drivers/power/avs/smartreflex.c @@ -225,8 +224,7 @@ static int sr_late_init(struct omap_sr *sr_info) error: list_del(&sr_info->node); - dev_err(&sr_info->pdev->dev, "%s: ERROR in registering" - "interrupt handler. Smartreflex will" + dev_err(&sr_info->pdev->dev, "%s: ERROR in registering interrupt handler. Smartreflex will " "not function as desired\n", __func__); return ret; @@ -387,7 +386,7 @@ int sr_configure_errgen(struct omap_sr *sr) vpboundint_st = ERRCONFIG_VPBOUNDINTST_V2; break; default: - dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex" + dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex " "module without specifying the ip\n", __func__); return -EINVAL; } @@ -440,7 +439,7 @@ int sr_disable_errgen(struct omap_sr *sr) vpboundint_st = ERRCONFIG_VPBOUNDINTST_V2; break; default: - dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex" + dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex " "module without specifying the ip\n", __func__); return -EINVAL; } @@ -504,7 +503,7 @@ int sr_configure_minmax(struct omap_sr *sr) senp_shift = SRCONFIG_SENPENABLE_V2_SHIFT; break; default: - dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex" + dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex " "module without specifying the ip\n", __func__); return -EINVAL; } @@ -537,7 +536,7 @@ int sr_configure_minmax(struct omap_sr *sr) IRQENABLE_MCUBOUNDSINT | IRQENABLE_MCUDISABLEACKINT); break; default: - dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex" + dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex " "module without specifying the ip\n", __func__); return -EINVAL; } @@ -571,7 +570,7 @@ int sr_enable(struct omap_sr *sr, unsigned long volt) volt_data = omap_voltage_get_voltdata(sr->voltdm, volt); if (IS_ERR(volt_data)) { - dev_warn(&sr->pdev->dev, "%s: Unable to get voltage table" + dev_warn(&sr->pdev->dev, "%s: Unable to get voltage table " "for nominal voltage %ld\n", __func__, volt); return PTR_ERR(volt_data); } @@ -704,7 +703,7 @@ void omap_sr_enable(struct voltagedomain *voltdm) return; if (!sr_class || !(sr_class->enable) || !(sr_class->configure)) { - dev_warn(&sr->pdev->dev, "%s: smartreflex class driver not" + dev_warn(&sr->pdev->dev, "%s: smartreflex class driver not " "registered\n", __func__); return; } @@ -736,7 +735,7 @@ void omap_sr_disable(struct voltagedomain *voltdm) return; if (!sr_class || !(sr_class->disable)) { - dev_warn(&sr->pdev->dev, "%s: smartreflex class driver not" + dev_warn(&sr->pdev->dev, "%s: smartreflex class driver not " "registered\n", __func__); return; } @@ -768,7 +767,7 @@ void omap_sr_disable_reset_volt(struct voltagedomain *voltdm) return; if (!sr_class || !(sr_class->disable)) { - dev_warn(&sr->pdev->dev, "%s: smartreflex class driver not" + dev_warn(&sr->pdev->dev, "%s: smartreflex class driver not " "registered\n", __func__); return; }