All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] counter: stm32: clean up indentation issue
@ 2019-09-25  9:51 ` Colin King
  0 siblings, 0 replies; 12+ messages in thread
From: Colin King @ 2019-09-25  9:51 UTC (permalink / raw)
  To: Fabrice Gasnier, William Breathitt Gray, Maxime Coquelin,
	Alexandre Torgue, linux-iio, linux-stm32, linux-arm-kernel
  Cc: kernel-janitors, linux-kernel

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

There is an if statement that is indented one level too deeply,
remove the extraneous tabs.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/counter/stm32-timer-cnt.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/counter/stm32-timer-cnt.c b/drivers/counter/stm32-timer-cnt.c
index 644ba18a72ad..613dcccf79e1 100644
--- a/drivers/counter/stm32-timer-cnt.c
+++ b/drivers/counter/stm32-timer-cnt.c
@@ -219,8 +219,8 @@ static ssize_t stm32_count_enable_write(struct counter_device *counter,
 
 	if (enable) {
 		regmap_read(priv->regmap, TIM_CR1, &cr1);
-			if (!(cr1 & TIM_CR1_CEN))
-				clk_enable(priv->clk);
+		if (!(cr1 & TIM_CR1_CEN))
+			clk_enable(priv->clk);
 
 		regmap_update_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN,
 				   TIM_CR1_CEN);
-- 
2.20.1


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

end of thread, other threads:[~2019-10-07  7:31 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-25  9:51 [PATCH] counter: stm32: clean up indentation issue Colin King
2019-09-25  9:51 ` Colin King
2019-09-25  9:51 ` Colin King
2019-10-05 17:30 ` William Breathitt Gray
2019-10-05 17:30   ` William Breathitt Gray
2019-10-05 17:30   ` William Breathitt Gray
2019-10-06  8:46   ` Jonathan Cameron
2019-10-06  8:46     ` Jonathan Cameron
2019-10-06  8:46     ` Jonathan Cameron
2019-10-07  7:31   ` Fabrice Gasnier
2019-10-07  7:31     ` Fabrice Gasnier
2019-10-07  7:31     ` Fabrice Gasnier

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.