1
0
Fork 0

pwm: vt8500: Fix build error

A missing '{' causes a build error in pwm-vt8500.c

Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
wifi-calibration
Tony Prisk 2012-11-20 06:44:45 +13:00 committed by Thierry Reding
parent c937136099
commit 2f9569f7ce
1 changed files with 1 additions and 1 deletions

View File

@ -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;
};