mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
pwm: twl-led: 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: Axel Lin <axel.lin@ingics.com> Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
This commit is contained in:
parent
83c80dc535
commit
7fa25314d5
1 changed files with 2 additions and 0 deletions
|
@ -271,6 +271,7 @@ static const struct pwm_ops twl4030_pwmled_ops = {
|
|||
.enable = twl4030_pwmled_enable,
|
||||
.disable = twl4030_pwmled_disable,
|
||||
.config = twl4030_pwmled_config,
|
||||
.owner = THIS_MODULE,
|
||||
};
|
||||
|
||||
static const struct pwm_ops twl6030_pwmled_ops = {
|
||||
|
@ -279,6 +280,7 @@ static const struct pwm_ops twl6030_pwmled_ops = {
|
|||
.config = twl6030_pwmled_config,
|
||||
.request = twl6030_pwmled_request,
|
||||
.free = twl6030_pwmled_free,
|
||||
.owner = THIS_MODULE,
|
||||
};
|
||||
|
||||
static int twl_pwmled_probe(struct platform_device *pdev)
|
||||
|
|
Loading…
Reference in a new issue