[PATCH 1/2] Fix build error in pwm-vt8500.c
Russell King - ARM Linux
linux at arm.linux.org.uk
Mon Nov 19 04:29:26 EST 2012
On Mon, Nov 19, 2012 at 03:06:19PM +1300, Tony Prisk wrote:
> A missing '{' causes a build error in pwm-vt8500.c
>
> Signed-off-by: Tony Prisk <linux at prisktech.co.nz>
> ---
> drivers/pwm/pwm-vt8500.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pwm/pwm-vt8500.c b/drivers/pwm/pwm-vt8500.c
> index 970b0c6..806f72c 100644
> --- a/drivers/pwm/pwm-vt8500.c
> +++ b/drivers/pwm/pwm-vt8500.c
> @@ -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;
> };
Why does this closing brace have a semicolon after it?
More information about the linux-arm-kernel
mailing list