diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-03-30 23:16:14 -0400 |
---|---|---|
committer | Thierry Reding <thierry.reding@avionic-design.de> | 2013-04-02 05:29:57 -0400 |
commit | 7fa25314d534b9449d1705722eac412cad5c9042 (patch) | |
tree | f451f9b4232d91a6d9da6148d31e27dbe3e183da /drivers/pwm | |
parent | 83c80dc5358270a665666ea5b9ddd24351d86354 (diff) |
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>
Diffstat (limited to 'drivers/pwm')
-rw-r--r-- | drivers/pwm/pwm-twl-led.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pwm/pwm-twl-led.c b/drivers/pwm/pwm-twl-led.c index 83e25d45d640..f912e87aed88 100644 --- a/drivers/pwm/pwm-twl-led.c +++ b/drivers/pwm/pwm-twl-led.c | |||
@@ -271,6 +271,7 @@ static const struct pwm_ops twl4030_pwmled_ops = { | |||
271 | .enable = twl4030_pwmled_enable, | 271 | .enable = twl4030_pwmled_enable, |
272 | .disable = twl4030_pwmled_disable, | 272 | .disable = twl4030_pwmled_disable, |
273 | .config = twl4030_pwmled_config, | 273 | .config = twl4030_pwmled_config, |
274 | .owner = THIS_MODULE, | ||
274 | }; | 275 | }; |
275 | 276 | ||
276 | static const struct pwm_ops twl6030_pwmled_ops = { | 277 | static const struct pwm_ops twl6030_pwmled_ops = { |
@@ -279,6 +280,7 @@ static const struct pwm_ops twl6030_pwmled_ops = { | |||
279 | .config = twl6030_pwmled_config, | 280 | .config = twl6030_pwmled_config, |
280 | .request = twl6030_pwmled_request, | 281 | .request = twl6030_pwmled_request, |
281 | .free = twl6030_pwmled_free, | 282 | .free = twl6030_pwmled_free, |
283 | .owner = THIS_MODULE, | ||
282 | }; | 284 | }; |
283 | 285 | ||
284 | static int twl_pwmled_probe(struct platform_device *pdev) | 286 | static int twl_pwmled_probe(struct platform_device *pdev) |