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

Commit d5714e8b authored by Axel Lin's avatar Axel Lin Committed by Thierry Reding
Browse files

pwm: twl: Add .owner to struct pwm_ops



Add missing .owner of struct pwm_ops. This prevents the module from being
removed from underneath its users.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Acked-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: default avatarThierry Reding <thierry.reding@avionic-design.de>
parent 7fa25314
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -287,12 +287,14 @@ static const struct pwm_ops twl4030_pwm_ops = {
	.disable = twl4030_pwm_disable,
	.request = twl4030_pwm_request,
	.free = twl4030_pwm_free,
	.owner = THIS_MODULE,
};

static const struct pwm_ops twl6030_pwm_ops = {
	.config = twl_pwm_config,
	.enable = twl6030_pwm_enable,
	.disable = twl6030_pwm_disable,
	.owner = THIS_MODULE,
};

static int twl_pwm_probe(struct platform_device *pdev)