Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ecefeb79 authored by Jingoo Han's avatar Jingoo Han Committed by Thierry Reding
Browse files

pwm: samsung: add missing device pointer to struct pwm_chip



This patch adds missing device pointer to struct pwm_chip. If the
device pointer is NULL, pwmchip_add() will return error.

Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarThierry Reding <thierry.reding@avionic-design.de>
parent dfeb86ec
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -225,6 +225,7 @@ static int s3c_pwm_probe(struct platform_device *pdev)


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