diff options
author | Bill Pemberton <[email protected]> | 2012-11-19 13:26:09 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2012-11-28 12:23:41 -0800 |
commit | 77f37917a6f2bd8635b553178bb34bdd80f08e40 (patch) | |
tree | 712f137581670232be398f87acbf019af0e4b5a8 /drivers/pwm/pwm-puv3.c | |
parent | 3e9fe83d278cce6974f0a4d1870c0ff4a0b74ba5 (diff) |
pwm: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <[email protected]>
Acked-by: Thierry Reding <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/pwm/pwm-puv3.c')
-rw-r--r-- | drivers/pwm/pwm-puv3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-puv3.c b/drivers/pwm/pwm-puv3.c index c1ee78ad5fcf..b882f6032fee 100644 --- a/drivers/pwm/pwm-puv3.c +++ b/drivers/pwm/pwm-puv3.c @@ -142,7 +142,7 @@ static int pwm_probe(struct platform_device *pdev) return 0; } -static int __devexit pwm_remove(struct platform_device *pdev) +static int pwm_remove(struct platform_device *pdev) { struct puv3_pwm_chip *puv3 = platform_get_drvdata(pdev); |