Skip to content

Commit

Permalink
pwm: samsung: add missing device pointer to struct pwm_chip
Browse files Browse the repository at this point in the history
This patch adds missing device pointer to struct pwm_chip. If the
device pointer is NULL, pwmchip_add() will return error.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
  • Loading branch information
Jingoo Han authored and Thierry Reding committed Aug 17, 2012
1 parent dfeb86e commit ecefeb7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/pwm/pwm-samsung.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ static int s3c_pwm_probe(struct platform_device *pdev)

/* calculate base of control bits in TCON */
s3c->tcon_base = id == 0 ? 0 : (id * 4) + 4;
s3c->chip.dev = &pdev->dev;
s3c->chip.ops = &s3c_pwm_ops;
s3c->chip.base = -1;
s3c->chip.npwm = 1;
Expand Down

0 comments on commit ecefeb7

Please sign in to comment.