Commit 76510ec6 authored by Colin Ian King's avatar Colin Ian King Committed by Jonathan Cameron

counter: stm32: clean up indentation issue

There is an if statement that is indented one level too deeply,
remove the extraneous tabs.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Acked-by: default avatarWilliam Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 3cfd6464
...@@ -219,8 +219,8 @@ static ssize_t stm32_count_enable_write(struct counter_device *counter, ...@@ -219,8 +219,8 @@ static ssize_t stm32_count_enable_write(struct counter_device *counter,
if (enable) { if (enable) {
regmap_read(priv->regmap, TIM_CR1, &cr1); regmap_read(priv->regmap, TIM_CR1, &cr1);
if (!(cr1 & TIM_CR1_CEN)) if (!(cr1 & TIM_CR1_CEN))
clk_enable(priv->clk); clk_enable(priv->clk);
regmap_update_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN, regmap_update_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN,
TIM_CR1_CEN); TIM_CR1_CEN);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment