diff options
| author | Axel Lin <axel.lin@ingics.com> | 2013-03-31 11:16:14 +0800 | 
|---|---|---|
| committer | Thierry Reding <thierry.reding@avionic-design.de> | 2013-04-02 11:29:57 +0200 | 
| commit | 7fa25314d534b9449d1705722eac412cad5c9042 (patch) | |
| tree | f451f9b4232d91a6d9da6148d31e27dbe3e183da /drivers/pwm/pwm-twl-led.c | |
| parent | 83c80dc5358270a665666ea5b9ddd24351d86354 (diff) | |
| download | olio-linux-3.10-7fa25314d534b9449d1705722eac412cad5c9042.tar.xz olio-linux-3.10-7fa25314d534b9449d1705722eac412cad5c9042.zip | |
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/pwm-twl-led.c')
| -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 83e25d45d64..f912e87aed8 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 = {  	.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) |