From: Axel Lin Date: Sun, 31 Mar 2013 03:14:02 +0000 (+0800) Subject: pwm: ab8500: Add .owner to struct pwm_ops X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=fa0abee9b89e3a0bab207823bd16372de53c3896;p=deliverable%2Flinux.git pwm: ab8500: 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 Signed-off-by: Thierry Reding --- diff --git a/drivers/pwm/pwm-ab8500.c b/drivers/pwm/pwm-ab8500.c index 3beb2b52bd2e..1d07a6f99375 100644 --- a/drivers/pwm/pwm-ab8500.c +++ b/drivers/pwm/pwm-ab8500.c @@ -88,6 +88,7 @@ static const struct pwm_ops ab8500_pwm_ops = { .config = ab8500_pwm_config, .enable = ab8500_pwm_enable, .disable = ab8500_pwm_disable, + .owner = THIS_MODULE, }; static int ab8500_pwm_probe(struct platform_device *pdev)