diff options
| author | Bill Pemberton <[email protected]> | 2012-11-19 18:26:09 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2012-11-28 20:23:41 +0000 |
| commit | 77f37917a6f2bd8635b553178bb34bdd80f08e40 (patch) | |
| tree | 712f137581670232be398f87acbf019af0e4b5a8 /drivers/pwm/pwm-pxa.c | |
| parent | pwm: remove use of __devinit (diff) | |
| download | kernel-77f37917a6f2bd8635b553178bb34bdd80f08e40.tar.gz kernel-77f37917a6f2bd8635b553178bb34bdd80f08e40.zip | |
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-pxa.c')
| -rw-r--r-- | drivers/pwm/pwm-pxa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-pxa.c b/drivers/pwm/pwm-pxa.c index 644d45d1453b..f32fc4e66e0c 100644 --- a/drivers/pwm/pwm-pxa.c +++ b/drivers/pwm/pwm-pxa.c @@ -179,7 +179,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 pxa_pwm_chip *chip; |
