Commit 2f9569f7 authored by Tony Prisk's avatar Tony Prisk Committed by Thierry Reding

pwm: vt8500: Fix build error

A missing '{' causes a build error in pwm-vt8500.c
Signed-off-by: default avatarTony Prisk <linux@prisktech.co.nz>
Signed-off-by: default avatarThierry Reding <thierry.reding@avionic-design.de>
parent c9371360
......@@ -100,7 +100,7 @@ static int vt8500_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
struct vt8500_chip *vt8500 = to_vt8500_chip(chip);
err = clk_enable(vt8500->clk);
if (err < 0)
if (err < 0) {
dev_err(chip->dev, "failed to enable clock\n");
return err;
};
......
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