Skip to content

Commit b33d232

Browse files
krzkthierryreding
authored andcommitted
pwm: meson: Fix confusing indentation
Fix indentation of return block. Smatch warning: drivers/pwm/pwm-meson.c:139 meson_pwm_request() warn: inconsistent indenting Reported-by: kbuild test robot <[email protected]> Signed-off-by: Krzysztof Kozlowski <[email protected]> Acked-by: Neil Armstrong <[email protected]> Fixes: 211ed63 ("pwm: Add support for Meson PWM Controller") Signed-off-by: Thierry Reding <[email protected]>
1 parent a37507d commit b33d232

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pwm/pwm-meson.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ static int meson_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
136136
dev_err(dev, "failed to set parent %s for %s: %d\n",
137137
__clk_get_name(channel->clk_parent),
138138
__clk_get_name(channel->clk), err);
139-
return err;
139+
return err;
140140
}
141141
}
142142

0 commit comments

Comments
 (0)