pwm: twl-led: Add .owner to struct pwm_ops
authorAxel Lin <axel.lin@ingics.com>
Sun, 31 Mar 2013 03:16:14 +0000 (11:16 +0800)
committerThierry Reding <thierry.reding@avionic-design.de>
Tue, 2 Apr 2013 09:29:57 +0000 (11:29 +0200)
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>
drivers/pwm/pwm-twl-led.c

index 83e25d45d640adde070f4fa43526506d2a29334d..f912e87aed885fb9f5da357783063176210427a4 100644 (file)
@@ -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)