All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] PM / AVS: SmartReflex: add in missing white space in error message text
@ 2016-09-12 11:14 Colin King
  2016-10-18 21:05 ` Kevin Hilman
  0 siblings, 1 reply; 2+ messages in thread
From: Colin King @ 2016-09-12 11:14 UTC (permalink / raw)
  To: Kevin Hilman, Nishanth Menon, linux-pm; +Cc: linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Several line wrapped literal strings are missing white spaces, add the
whitespace to fix this.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 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;
 	}
-- 
2.9.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-10-18 21:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-12 11:14 [PATCH] PM / AVS: SmartReflex: add in missing white space in error message text Colin King
2016-10-18 21:05 ` Kevin Hilman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.